summaryrefslogtreecommitdiff
path: root/src/stat/fstatvfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/fstatvfs.c')
-rw-r--r--src/stat/fstatvfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat/fstatvfs.c b/src/stat/fstatvfs.c
index 4a8bfe2e..8a2e4235 100644
--- a/src/stat/fstatvfs.c
+++ b/src/stat/fstatvfs.c
@@ -4,7 +4,7 @@
int fstatvfs(int fd, struct statvfs *buf)
{
- return syscall2(__NR_fstatfs, fd, (long)buf);
+ return syscall(SYS_fstatfs, fd, buf);
}
weak_alias(fstatvfs, fstatfs);