mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-05 18:02:54 +00:00
Kernel: Remove unnecessary printf specifier
This commit is contained in:
parent
8ad890cfa6
commit
2f2016f51d
Notes:
sideshowbarker
2024-07-19 08:00:03 +09:00
Author: https://github.com/supercomputer7
Commit: 2f2016f51d
Pull-request: https://github.com/SerenityOS/serenity/pull/1513
Issue: https://github.com/SerenityOS/serenity/issues/1351
Reviewed-by: https://github.com/bugaevc
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