X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstat%2Fstat.c;h=9847552afddf29e2f590f8fe43d5a5bb30ac7f43;hb=d5ca067c7bb47081c169ff8b0213c73418f0525e;hp=67640cc1589a591759248971c58cbc4776006d2d;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/stat/stat.c b/src/stat/stat.c index 67640cc1..9847552a 100644 --- a/src/stat/stat.c +++ b/src/stat/stat.c @@ -4,7 +4,7 @@ int stat(const char *path, struct stat *buf) { - return syscall2(__NR_stat64, (long)path, (long)buf); + return syscall2(__NR_stat, (long)path, (long)buf); } LFS64(stat);