diff options
Diffstat (limited to 'Userland/Libraries/LibCore/LocalServer.cpp')
-rw-r--r-- | Userland/Libraries/LibCore/LocalServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCore/LocalServer.cpp b/Userland/Libraries/LibCore/LocalServer.cpp index 9bbd878a83..fcbd687278 100644 --- a/Userland/Libraries/LibCore/LocalServer.cpp +++ b/Userland/Libraries/LibCore/LocalServer.cpp @@ -35,7 +35,7 @@ LocalServer::~LocalServer() ErrorOr<void> LocalServer::take_over_from_system_server(String const& socket_path) { if (m_listening) - return Error::from_string_literal("Core::LocalServer: Can't perform socket takeover when already listening"sv); + return Error::from_string_literal("Core::LocalServer: Can't perform socket takeover when already listening"); auto socket = TRY(take_over_socket_from_system_server(socket_path)); m_fd = TRY(socket->release_fd()); |