mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-04 23:30:20 +00:00
LibIPC: Oops, fix busted dbgln() format string (thanks, checker!)
This commit is contained in:
parent
05bb11f482
commit
dc42b4565b
Notes:
sideshowbarker
2024-07-18 22:21:02 +09:00
Author: https://github.com/awesomekling
Commit: dc42b4565b
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ bool Decoder::decode([[maybe_unused]] File& file)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (fcntl(fd, F_SETFD, FD_CLOEXEC) < 0) {
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
file = File(fd, File::ConstructWithReceivedFileDescriptor);
|
file = File(fd, File::ConstructWithReceivedFileDescriptor);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue