Re: [perl #28087] [PATCH] wrong type for status in platform/win32/exec.c

2004-03-30 Thread Dan Sugalski
At 7:13 AM -0800 3/30/04, mrnobo1024 (via RT) wrote: The second arg of GetExitCodeProcess should be a pointer to DWORD, not int, this was causing a warning on mingw: src/platform.c: In function `Parrot_Run_OS_Command': src/platform.c:446: warning: passing arg 2 of `GetExitCodeProcess' from

[PATCH] wrong type for status in platform/win32/exec.c

2004-03-27 Thread Goplat
The second arg of GetExitCodeProcess should be a pointer to DWORD, not int, this was causing a warning on mingw: src/platform.c: In function `Parrot_Run_OS_Command': src/platform.c:446: warning: passing arg 2 of `GetExitCodeProcess' from incompatible pointer type