1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 08:07:44 +00:00

Kernel: Fix syntax error in FIFO_DEBUG

This commit is contained in:
Liav A 2020-03-06 23:27:24 +02:00 committed by Andreas Kling
parent 30152b6c88
commit f3f8b88d8f

View file

@ -136,7 +136,7 @@ ssize_t FIFO::write(FileDescription&, const u8* buffer, ssize_t size)
return -EPIPE; return -EPIPE;
} }
#ifdef FIFO_DEBUG #ifdef FIFO_DEBUG
dbg() << "fifo: write(" << (const void*)buffer) << ", " << size << ")"; dbg() << "fifo: write(" << (const void*)buffer << ", " << size << ")";
#endif #endif
return m_buffer.write(buffer, size); return m_buffer.write(buffer, size);
} }