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/fstatat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stat/fstatat.c') diff --git a/src/stat/fstatat.c b/src/stat/fstatat.c index 22bc2934..e39f833b 100644 --- a/src/stat/fstatat.c +++ b/src/stat/fstatat.c @@ -4,7 +4,7 @@ int fstatat(int fd, const char *path, struct stat *buf, int flag) { - return syscall4(__NR_fstatat64, fd, (long)path, (long)buf, flag); + return syscall4(__NR_fstatat, fd, (long)path, (long)buf, flag); } LFS64(fstatat); -- cgit v1.2.1