diff options
Diffstat (limited to 'src/unistd/chown.c')
-rw-r--r-- | src/unistd/chown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/chown.c b/src/unistd/chown.c index 6069a2fe..b89b1735 100644 --- a/src/unistd/chown.c +++ b/src/unistd/chown.c @@ -3,5 +3,5 @@ int chown(const char *path, uid_t uid, gid_t gid) { - return syscall3(__NR_chown32, (long)path, uid, gid); + return syscall3(__NR_chown, (long)path, uid, gid); } |