diff options
author | Liav A <liavalb@gmail.com> | 2020-03-25 17:22:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-02 12:03:08 +0200 |
commit | 2f2016f51d217e6c0c05a72664bdb1307ad538e6 (patch) | |
tree | 068f82d075899cff8fb77746aa82b1b15aed5b60 /Kernel | |
parent | 8ad890cfa69f105549d42fe43e2c016e231ddc9a (diff) | |
download | serenity-2f2016f51d217e6c0c05a72664bdb1307ad538e6.zip |
Kernel: Remove unnecessary printf specifier
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/FileSystem/DiskBackedFileSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/DiskBackedFileSystem.cpp b/Kernel/FileSystem/DiskBackedFileSystem.cpp index d281f935eb..1e955b3633 100644 --- a/Kernel/FileSystem/DiskBackedFileSystem.cpp +++ b/Kernel/FileSystem/DiskBackedFileSystem.cpp @@ -150,7 +150,7 @@ bool DiskBackedFS::write_block(unsigned index, const u8* data, FileDescription* bool DiskBackedFS::write_blocks(unsigned index, unsigned count, const u8* data, FileDescription* description) { #ifdef DBFS_DEBUG - klog() << "DiskBackedFileSystem::write_blocks " << index << " x%u" << count; + klog() << "DiskBackedFileSystem::write_blocks " << index << " x" << count; #endif for (unsigned i = 0; i < count; ++i) write_block(index + i, data + i * block_size(), description); |