diff options
Diffstat (limited to 'src/stat/statvfs.c')
-rw-r--r-- | src/stat/statvfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat/statvfs.c b/src/stat/statvfs.c index ebf14b43..17252997 100644 --- a/src/stat/statvfs.c +++ b/src/stat/statvfs.c @@ -4,7 +4,7 @@ int statvfs(const char *path, struct statvfs *buf) { - return syscall2(__NR_statfs, (long)path, (long)buf); + return syscall(SYS_statfs, path, buf); } weak_alias(statvfs, statfs); |