diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-15 04:12:19 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-15 04:12:19 -0500 |
commit | cfe373146d232d7c89a60920f77b9451bcfee96b (patch) | |
tree | db859ab013e3db10f1f75950100f013a7c4e829e /src/stat/fstatat.c | |
parent | a5bf06c035168122725ec32537f99ab1e6c8432c (diff) | |
download | musl-cfe373146d232d7c89a60920f77b9451bcfee96b.tar.gz musl-cfe373146d232d7c89a60920f77b9451bcfee96b.tar.bz2 musl-cfe373146d232d7c89a60920f77b9451bcfee96b.tar.xz musl-cfe373146d232d7c89a60920f77b9451bcfee96b.zip |
finish moving 32-bit-specific junk out of source files.
Diffstat (limited to 'src/stat/fstatat.c')
-rw-r--r-- | src/stat/fstatat.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |