add portable lchown (trivial to support and a few ancient things want it..)
[musl] / src / stat / fstatvfs.c
index 83bd748..4a8bfe2 100644 (file)
@@ -4,7 +4,7 @@
 
 int fstatvfs(int fd, struct statvfs *buf)
 {
-       return syscall2(__NR_fstatfs64, fd, (long)buf);
+       return syscall2(__NR_fstatfs, fd, (long)buf);
 }
 
 weak_alias(fstatvfs, fstatfs);