mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-09 16:42:19 +02:00
Kernel: Remove unnecessary printf specifier
This commit is contained in:
Notes:
sideshowbarker
2024-07-19 08:00:03 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/2f2016f51d2 Pull-request: https://github.com/SerenityOS/serenity/pull/1513 Issue: https://github.com/SerenityOS/serenity/issues/1351 Reviewed-by: https://github.com/bugaevc
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user