summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/SystemServerTakeover.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibCore/SystemServerTakeover.cpp')
-rw-r--r--Userland/Libraries/LibCore/SystemServerTakeover.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibCore/SystemServerTakeover.cpp b/Userland/Libraries/LibCore/SystemServerTakeover.cpp
index dfbff119d3..33b2fa4eef 100644
--- a/Userland/Libraries/LibCore/SystemServerTakeover.cpp
+++ b/Userland/Libraries/LibCore/SystemServerTakeover.cpp
@@ -47,7 +47,7 @@ ErrorOr<NonnullOwnPtr<Core::Stream::LocalSocket>> take_over_socket_from_system_s
} else {
auto it = s_overtaken_sockets.find(socket_path);
if (it == s_overtaken_sockets.end())
- return Error::from_string_literal("Non-existent socket requested"sv);
+ return Error::from_string_literal("Non-existent socket requested");
fd = it->value;
}
@@ -55,7 +55,7 @@ ErrorOr<NonnullOwnPtr<Core::Stream::LocalSocket>> take_over_socket_from_system_s
auto stat = TRY(Core::System::fstat(fd));
if (!S_ISSOCK(stat.st_mode))
- return Error::from_string_literal("The fd we got from SystemServer is not a socket"sv);
+ return Error::from_string_literal("The fd we got from SystemServer is not a socket");
auto socket = TRY(Core::Stream::LocalSocket::adopt_fd(fd));
// It had to be !CLOEXEC for obvious reasons, but we