diff options
Diffstat (limited to 'Libraries/LibCore/LocalSocket.cpp')
-rw-r--r-- | Libraries/LibCore/LocalSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibCore/LocalSocket.cpp b/Libraries/LibCore/LocalSocket.cpp index 65a38d8de6..d49aa1d166 100644 --- a/Libraries/LibCore/LocalSocket.cpp +++ b/Libraries/LibCore/LocalSocket.cpp @@ -88,7 +88,7 @@ RefPtr<LocalSocket> LocalSocket::take_over_accepted_socket_from_system_server() if (rc < 0 || !S_ISSOCK(stat.st_mode)) { if (rc != 0) perror("fstat"); - dbg() << "ERROR: The fd we got from SystemServer is not a socket"; + dbgln("ERROR: The fd we got from SystemServer is not a socket"); return nullptr; } |