소스 검색

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

Eric Andersen 24 년 전
부모
커밋
9f82e5e79a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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