the 3rd arg to shmat() is an integer, not a pointer. the current os.cc file
does:
shmaddr = shmat(shmid, NULL, NULL);
which triggers a warning on recent Linux/glibc systems:
os.cc:416:44: warning: passing NULL to non-pointer argument 3 of ‘void*
shmat(int, const void*, int)’ [-Wconversion-null]
simply change the 3rd arg to 0
Original issue reported on code.google.com by vapier@gmail.com on 27 Nov 2012 at 6:58
Original issue reported on code.google.com by
vapier@gmail.com
on 27 Nov 2012 at 6:58