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/fstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stat/fstat.c') diff --git a/src/stat/fstat.c b/src/stat/fstat.c index 5f643301..88ac6f3c 100644 --- a/src/stat/fstat.c +++ b/src/stat/fstat.c @@ -4,7 +4,7 @@ int fstat(int fd, struct stat *buf) { - return syscall2(__NR_fstat64, fd, (long)buf); + return syscall2(__NR_fstat, fd, (long)buf); } LFS64(fstat); -- cgit v1.2.1