summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2020-03-25 17:22:01 +0200
committerAndreas Kling <kling@serenityos.org>2020-04-02 12:03:08 +0200
commit2f2016f51d217e6c0c05a72664bdb1307ad538e6 (patch)
tree068f82d075899cff8fb77746aa82b1b15aed5b60 /Kernel
parent8ad890cfa69f105549d42fe43e2c016e231ddc9a (diff)
downloadserenity-2f2016f51d217e6c0c05a72664bdb1307ad538e6.zip
Kernel: Remove unnecessary printf specifier
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/FileSystem/DiskBackedFileSystem.cpp2
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);