From acabadaaab0fed1b6cd84e2c2c2417220e583c4c Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Wed, 16 Oct 2024 02:10:34 +0300 Subject: [PATCH] linux: Correct struct linux_dirent64 variables --- include/syscall/linux/defs.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/syscall/linux/defs.hpp b/include/syscall/linux/defs.hpp index 722852f..e363378 100644 --- a/include/syscall/linux/defs.hpp +++ b/include/syscall/linux/defs.hpp @@ -266,8 +266,8 @@ struct linux_dirent struct linux_dirent64 { - uint64_t d_ino; - int64_t d_off; + ino64_t d_ino; + off64_t d_off; unsigned short d_reclen; unsigned char d_type; char d_name[];