diff options
author | Liav A <liavalb@gmail.com> | 2020-03-06 23:27:24 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-06 22:29:24 +0100 |
commit | f3f8b88d8fa8013ab5b69caa0e45b842071cdfa0 (patch) | |
tree | 755d41120cbce8d91033a7b261b8d6da557dd88c /Kernel/FileSystem/FIFO.cpp | |
parent | 30152b6c88f8334d61a21c5dfdd02166dcb3e788 (diff) | |
download | serenity-f3f8b88d8fa8013ab5b69caa0e45b842071cdfa0.zip |
Kernel: Fix syntax error in FIFO_DEBUG
Diffstat (limited to 'Kernel/FileSystem/FIFO.cpp')
-rw-r--r-- | Kernel/FileSystem/FIFO.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/FIFO.cpp b/Kernel/FileSystem/FIFO.cpp index ce0c477b11..586d9e4eb3 100644 --- a/Kernel/FileSystem/FIFO.cpp +++ b/Kernel/FileSystem/FIFO.cpp @@ -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); } |