summaryrefslogtreecommitdiff
path: root/libc/sysdeps
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-04-03 09:04:01 +0000
committerEric Andersen <andersen@codepoet.org>2002-04-03 09:04:01 +0000
commit9f82e5e79a9a63e121c03858df9910724d78c6ea (patch)
treefd322c827b50a803e59eb46545a6eec1ac069946 /libc/sysdeps
parent96749a768287761528a05670560402a16f6839ac (diff)
m4@brecis.COM noticed a typing problem with the getuid syscall. OOps.
Diffstat (limited to 'libc/sysdeps')
-rw-r--r--libc/sysdeps/linux/common/syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c
index d612f5da1..9c416fe2f 100644
--- a/libc/sysdeps/linux/common/syscalls.c
+++ b/libc/sysdeps/linux/common/syscalls.c
@@ -217,7 +217,7 @@ int setuid(uid_t uid)
//#define __NR_getuid 24
#ifdef L_getuid
#include <unistd.h>
-_syscall0(gid_t, getuid);
+_syscall0(uid_t, getuid);
#endif
//#define __NR_stime 25