about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2022-07-30 10:04:10 +0200
committerptitSeb <sebastien.chev@gmail.com>2022-07-30 10:04:10 +0200
commitafb2cc4a99545cb83feeb14f1bcc42273b7630a6 (patch)
tree08530dd78987702b5fe6447a067080f6d4a00401
parenta72751914d81583f8a673ca82cd6ca5173c987ee (diff)
downloadbox64-afb2cc4a99545cb83feeb14f1bcc42273b7630a6.tar.gz
box64-afb2cc4a99545cb83feeb14f1bcc42273b7630a6.zip
Fixed syscall 332 (for #361)
-rwxr-xr-xsrc/emu/x64syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64syscall.c b/src/emu/x64syscall.c
index c19d0de9..c5d740de 100755
--- a/src/emu/x64syscall.c
+++ b/src/emu/x64syscall.c
@@ -199,7 +199,7 @@ scwrap_t syscallwrap[] = {
     { 324, __NR_membarrier, 2},
     #ifdef __NR_statx
     // TODO: implement fallback if __NR_statx is not defined
-    { 332, __NR_statx, 4},
+    { 332, __NR_statx, 5},
     #endif
     #ifdef __NR_fchmodat4
     { 434, __NR_fchmodat4, 4},