mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-25 15:39:55 +00:00
Kernel: Fix syntax error in FIFO_DEBUG
This commit is contained in:
parent
30152b6c88
commit
f3f8b88d8f
Notes:
sideshowbarker
2024-07-19 08:51:43 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/f3f8b88d8fa Pull-request: https://github.com/SerenityOS/serenity/pull/1368
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ ssize_t FIFO::write(FileDescription&, const u8* buffer, ssize_t size)
|
|||
return -EPIPE;
|
||||
}
|
||||
#ifdef FIFO_DEBUG
|
||||
dbg() << "fifo: write(" << (const void*)buffer) << ", " << size << ")";
|
||||
dbg() << "fifo: write(" << (const void*)buffer << ", " << size << ")";
|
||||
#endif
|
||||
return m_buffer.write(buffer, size);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue