X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Funistd%2Flchown.c;h=a8402132561a5fb86284153787af9f7bd4ac6426;hb=be82e122bf37fdcd1766d1ed220f0300b30ab6a3;hp=30e839167f7c3d0f320e1c1d5e70553e7c1186e7;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/unistd/lchown.c b/src/unistd/lchown.c index 30e83916..a8402132 100644 --- a/src/unistd/lchown.c +++ b/src/unistd/lchown.c @@ -3,5 +3,5 @@ int lchown(const char *path, uid_t uid, gid_t gid) { - return syscall3(__NR_lchown32, (long)path, uid, gid); + return syscall3(__NR_lchown, (long)path, uid, gid); }