summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/dirent.cpp
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2021-08-08 21:23:27 +0300
committerAndreas Kling <kling@serenityos.org>2021-08-12 20:57:32 +0200
commitbf1adc2d5d383c0421f19ccb36a0358ff2ee0ce5 (patch)
tree6f20ee88e352aca58753175a7536947c005693be /Userland/Libraries/LibC/dirent.cpp
parent04c2addaa89ac63d6830baae70afdcbca0c4cd21 (diff)
downloadserenity-bf1adc2d5d383c0421f19ccb36a0358ff2ee0ce5.zip
Kernel+LibC: Use 64 bit values for ino_t
Since the InodeIndex encapsulates a 64 bit value, it is correct to ensure that the Kernel is exposing the entire value and the LibC is aware of it. This commit requires an entire re-compile because it's essentially a change in the Kernel ABI, together with a corresponding change in LibC.
Diffstat (limited to 'Userland/Libraries/LibC/dirent.cpp')
-rw-r--r--Userland/Libraries/LibC/dirent.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/dirent.cpp b/Userland/Libraries/LibC/dirent.cpp
index d92cf85050..7475d22519 100644
--- a/Userland/Libraries/LibC/dirent.cpp
+++ b/Userland/Libraries/LibC/dirent.cpp
@@ -5,6 +5,7 @@
*/
#include <AK/Assertions.h>
+#include <AK/Format.h>
#include <AK/ScopeGuard.h>
#include <AK/StdLibExtras.h>
#include <AK/Vector.h>