1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 10:44:57 +00:00

Kernel: Remove unnecessary printf specifier

This commit is contained in:
Liav A 2020-03-25 17:22:01 +02:00 committed by Andreas Kling
parent 8ad890cfa6
commit 2f2016f51d

View file

@ -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);