mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:18:12 +00:00
Kernel: Fix syntax error in FIFO_DEBUG
This commit is contained in:
parent
30152b6c88
commit
f3f8b88d8f
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…
Add table
Add a link
Reference in a new issue