diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-07-30 10:04:10 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-07-30 10:04:10 +0200 |
| commit | afb2cc4a99545cb83feeb14f1bcc42273b7630a6 (patch) | |
| tree | 08530dd78987702b5fe6447a067080f6d4a00401 | |
| parent | a72751914d81583f8a673ca82cd6ca5173c987ee (diff) | |
| download | box64-afb2cc4a99545cb83feeb14f1bcc42273b7630a6.tar.gz box64-afb2cc4a99545cb83feeb14f1bcc42273b7630a6.zip | |
Fixed syscall 332 (for #361)
| -rwxr-xr-x | src/emu/x64syscall.c | 2 |
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}, |