Browse Source

m4@brecis.COM noticed a typing problem with the getuid syscall. OOps.

Eric Andersen 23 years ago
parent
commit
9f82e5e79a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/sysdeps/linux/common/syscalls.c

+ 1 - 1
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