this repo has no description
1
fork

Configure Feed

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

Merge commit 'b49a7445072a5f9dd4386c4cf4d24b868fa81da1'

+5 -1
+3
src/bootstrap_cmds/CMakeLists.txt
··· 16 16 FLEX_TARGET(MyScanner migcom.tproj/lexxer.l ${CMAKE_CURRENT_BINARY_DIR}/lexer.c) 17 17 ADD_FLEX_BISON_DEPENDENCY(MyScanner MyParser) 18 18 19 + # Hide some unimportant warnings 20 + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-dangling-else -Wno-implicit-function-declaration") 21 + 19 22 set(mig_sources 20 23 migcom.tproj/error.c 21 24 migcom.tproj/global.c
+2 -1
src/kernel/emulation/linux/unistd/getgroups.c
··· 3 3 #include "../errno.h" 4 4 #include <asm/unistd.h> 5 5 #include <stddef.h> 6 + #include <stdlib.h> 6 7 7 8 long sys_getgroups(unsigned int size, int* gidset) 8 9 { 9 10 int ret; 10 11 11 - if (getenv("__FAKE_SETUID_ROOT") != NULL) 12 + if (getenv("__FAKE_SETUID_ROOT")) 12 13 { 13 14 if (size >= 1) 14 15 {