1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 04:14:58 +00:00

Ext2FS: Fix build with EXT2_DEBUG

This commit is contained in:
Andreas Kling 2020-08-23 00:46:15 +02:00
parent 274be68102
commit 31d3eac651

View file

@ -915,7 +915,7 @@ bool Ext2FSInode::write_directory(const Vector<Ext2FSDirectoryEntry>& entries)
#ifdef EXT2_DEBUG
dbg() << "* Inode: " << entry.inode
<< ", name_len: " << u16(entry.name_length)
<< ", name_len: " << u16(entry.name.length())
<< ", rec_len: " << u16(record_length)
<< ", file_type: " << u8(entry.file_type)
<< ", name: " << entry.name;