mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibIPC: Oops, fix busted dbgln() format string (thanks, checker!)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user