From dc42b4565bde0b5719d27073f453a124ff3edb84 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 13 Feb 2021 20:37:05 +0100 Subject: LibIPC: Oops, fix busted dbgln() format string (thanks, checker!) --- Userland/Libraries/LibIPC/Decoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Libraries/LibIPC') 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); -- cgit v1.2.3