X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstat%2Ffstatvfs.c;h=8a2e423511a2423d8f331bc98c2e0c9ca72c0173;hb=e3cd6c5c265cd481db6e0c5b529855d99f0bda30;hp=83bd748688f5657f67306c5cb930c665f8d34140;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/stat/fstatvfs.c b/src/stat/fstatvfs.c index 83bd7486..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_fstatfs64, fd, (long)buf); + return syscall(SYS_fstatfs, fd, buf); } weak_alias(fstatvfs, fstatfs);