diff options
Diffstat (limited to 'Userland/Services/TelnetServer/main.cpp')
-rw-r--r-- | Userland/Services/TelnetServer/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/TelnetServer/main.cpp b/Userland/Services/TelnetServer/main.cpp index e225af6227..1481f02859 100644 --- a/Userland/Services/TelnetServer/main.cpp +++ b/Userland/Services/TelnetServer/main.cpp @@ -86,7 +86,7 @@ static void run_command(int ptm_fd, DeprecatedString command) ErrorOr<int> serenity_main(Main::Arguments arguments) { int port = 23; - char const* command = ""; + StringView command = ""sv; Core::ArgsParser args_parser; args_parser.add_option(port, "Port to listen on", nullptr, 'p', "port"); |