From cfe373146d232d7c89a60920f77b9451bcfee96b Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 15 Feb 2011 04:12:19 -0500 Subject: finish moving 32-bit-specific junk out of source files. --- src/stat/fstatvfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stat/fstatvfs.c') diff --git a/src/stat/fstatvfs.c b/src/stat/fstatvfs.c index 83bd7486..4a8bfe2e 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 syscall2(__NR_fstatfs, fd, (long)buf); } weak_alias(fstatvfs, fstatfs); -- cgit v1.2.1