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 incompat

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

2004-03-30 Thread via RT
# New Ticket Created by mrnobo1024 # Please include the string: [perl #28087] # in the subject line of all future correspondence about this issue. # http://rt.perl.org:80/rt3/Ticket/Display.html?id=28087 > The second arg of GetExitCodeProcess should be a pointer to DWORD, not int, this was ca

[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