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/lstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stat/lstat.c') diff --git a/src/stat/lstat.c b/src/stat/lstat.c index afdb5538..3b22e620 100644 --- a/src/stat/lstat.c +++ b/src/stat/lstat.c @@ -4,7 +4,7 @@ int lstat(const char *path, struct stat *buf) { - return syscall2(__NR_lstat64, (long)path, (long)buf); + return syscall2(__NR_lstat, (long)path, (long)buf); } LFS64(lstat); -- cgit v1.2.1