this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix sys_getegid

+1 -1
+1 -1
src/kernel/emulation/linux/unistd/getegid.c
··· 8 8 { 9 9 struct uidgid ug; 10 10 lkm_call(NR_getuidgid, &ug); 11 - return ug.uid; 11 + return ug.gid; 12 12 } 13 13