summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Userland/Libraries/LibIPC/Decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibIPC/Decoder.cpp b/Userland/Libraries/LibIPC/Decoder.cpp
index 8b1ec84053..ccf07e6f58 100644
--- a/Userland/Libraries/LibIPC/Decoder.cpp
+++ b/Userland/Libraries/LibIPC/Decoder.cpp
@@ -177,7 +177,7 @@ bool Decoder::decode([[maybe_unused]] File& file)
return false;
}
if (fcntl(fd, F_SETFD, FD_CLOEXEC) < 0) {
- dbgln("fcntl(F_SETFD, FD_CLOEXEC)", strerror(errno));
+ dbgln("fcntl(F_SETFD, FD_CLOEXEC): {}", strerror(errno));
return false;
}
file = File(fd, File::ConstructWithReceivedFileDescriptor);