summaryrefslogtreecommitdiff
path: root/Services/TelnetServer
diff options
context:
space:
mode:
authorSahan Fernando <sahan.h.fernando@gmail.com>2021-01-12 00:38:09 +1100
committerAndreas Kling <kling@serenityos.org>2021-01-11 21:06:32 +0100
commit6d97b623cdfed59bd8a747ee492cca5512966dc8 (patch)
treecd6e7b5325893447241e98ad264266e75b2dccf2 /Services/TelnetServer
parent099b83fd286dddcc5cf0c766241dd2b1a3098796 (diff)
downloadserenity-6d97b623cdfed59bd8a747ee492cca5512966dc8.zip
Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.
Diffstat (limited to 'Services/TelnetServer')
-rw-r--r--Services/TelnetServer/Command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Services/TelnetServer/Command.h b/Services/TelnetServer/Command.h
index ac696c2111..25afb1fe22 100644
--- a/Services/TelnetServer/Command.h
+++ b/Services/TelnetServer/Command.h
@@ -73,7 +73,7 @@ struct Command {
builder.append("SUPPRESS_GO_AHEAD");
break;
default:
- builder.append(String::format("UNKNOWN<%02x>"));
+ builder.append(String::format("UNKNOWN<%02x>", subcommand));
break;
}