diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-16 13:59:28 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-16 13:59:28 +0200 |
commit | 5d465582a37cc2e9ee8109397a6485c18547fe5f (patch) | |
tree | 0fdf2463ae1a0bb5c1a9c4bb4325a3c038f828c4 /AK/MappedFile.cpp | |
parent | 1203c327c71645a962151f299fd324d3d0d97079 (diff) | |
download | serenity-5d465582a37cc2e9ee8109397a6485c18547fe5f.zip |
Start fixing up AK to work inside the kernel.
Diffstat (limited to 'AK/MappedFile.cpp')
-rw-r--r-- | AK/MappedFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/MappedFile.cpp b/AK/MappedFile.cpp index 0afec76185..6a8ad3515b 100644 --- a/AK/MappedFile.cpp +++ b/AK/MappedFile.cpp @@ -22,7 +22,7 @@ MappedFile::MappedFile(String&& fileName) perror(""); } - printf("MappedFile{%s} := { m_fd=%d, m_fileLength=%u, m_map=%p }\n", m_fileName.characters(), m_fd, m_fileLength, m_map); + printf("MappedFile{%s} := { m_fd=%d, m_fileLength=%zu, m_map=%p }\n", m_fileName.characters(), m_fd, m_fileLength, m_map); } MappedFile::~MappedFile() |