diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-12 10:03:53 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-12 10:03:53 -0400 |
commit | a97a1ed57051fc0c4e2f2f803a4d6a734689cbdc (patch) | |
tree | 55ebd06aae0741b3e4bfe975f7d91dc63b0c6a24 /src/unistd/chown.c | |
parent | 4f50d3e580761fd3c44fe8ed0db57858c5295f25 (diff) |
remove __syscall_lookup()
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 2036fb28..9f931765 100644 --- a/src/unistd/chown.c +++ b/src/unistd/chown.c @@ -5,7 +5,7 @@ int chown(const char *path, uid_t owner, gid_t group) { - SYSCALL("chown", int, -1, path, owner, group, 0, 0, 0); + SYSCALL(chown, int, -1, path, owner, group, 0, 0, 0); } /* POSIX(1) |