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/statvfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stat/statvfs.c') diff --git a/src/stat/statvfs.c b/src/stat/statvfs.c index 55a05d52..ebf14b43 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_statfs64, (long)path, (long)buf); + return syscall2(__NR_statfs, (long)path, (long)buf); } weak_alias(statvfs, statfs); -- cgit v1.2.1