Kernel: Unbreak building with extra debug macros, part 1

This commit is contained in:
Ben Wiederhake 2020-08-27 00:32:56 +02:00 committed by Andreas Kling
parent 8c1888811f
commit eac3bbdcee
Notes: sideshowbarker 2024-07-19 03:02:31 +09:00
9 changed files with 24 additions and 14 deletions

View file

@ -124,7 +124,7 @@ bool BlockBasedFS::write_block(unsigned index, const u8* data, size_t count, siz
ASSERT(m_logical_block_size);
ASSERT(offset + count <= block_size());
#ifdef BBFS_DEBUG
klog() << "BlockBasedFileSystem::write_block " << index << ", size=" << data.size();
klog() << "BlockBasedFileSystem::write_block " << index << ", size=" << count;
#endif
if (!allow_cache) {