summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibIPC
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-02-13 20:37:05 +0100
committerAndreas Kling <kling@serenityos.org>2021-02-13 20:37:05 +0100
commitdc42b4565bde0b5719d27073f453a124ff3edb84 (patch)
treeb7572c8704a4fd23f1c099526d5195e6d592e59c /Userland/Libraries/LibIPC
parent05bb11f4827258e101a3674c1caf20f664f58eee (diff)
downloadserenity-dc42b4565bde0b5719d27073f453a124ff3edb84.zip
LibIPC: Oops, fix busted dbgln() format string (thanks, checker!)
Diffstat (limited to 'Userland/Libraries/LibIPC')
-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);