fix exit code of processes in si_waitpid on windows
GetExitCodeProcess returns the exit code in a DWORD, which is an unsigned integer, however main functions usually return a signed int, so we need put in an explicit type cast.
Please register or sign in to comment