AK: Unbreak building with extra debug macros

This commit is contained in:
Ben Wiederhake 2020-08-27 00:30:19 +02:00 committed by Andreas Kling
commit 184b454e2f
Notes: sideshowbarker 2024-07-19 03:02:43 +09:00
3 changed files with 6 additions and 4 deletions

View file

@ -57,7 +57,7 @@ MappedFile::MappedFile(const StringView& file_name)
}
#ifdef DEBUG_MAPPED_FILE
dbgprintf("MappedFile{%s} := { fd=%d, m_size=%u, m_map=%p }\n", file_name.characters(), fd, m_size, m_map);
dbgprintf("MappedFile{%s} := { fd=%d, m_size=%zu, m_map=%p }\n", file_name.to_string().characters(), fd, m_size, m_map);
#endif
close(fd);