summaryrefslogtreecommitdiff
path: root/src/stat/lstat.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-15 04:12:19 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-15 04:12:19 -0500
commitcfe373146d232d7c89a60920f77b9451bcfee96b (patch)
treedb859ab013e3db10f1f75950100f013a7c4e829e /src/stat/lstat.c
parenta5bf06c035168122725ec32537f99ab1e6c8432c (diff)
downloadmusl-cfe373146d232d7c89a60920f77b9451bcfee96b.tar.gz
finish moving 32-bit-specific junk out of source files.
Diffstat (limited to 'src/stat/lstat.c')
-rw-r--r--src/stat/lstat.c2
1 files changed, 1 insertions, 1 deletions
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);