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:
parent
8ad890cfa6
commit
2f2016f51d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue