1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* win32/win32.c (poll_child_status): constified.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2013-05-02 03:35:37 +00:00
parent 50cc7057af
commit 30afde959b

View file

@ -3911,7 +3911,7 @@ poll_child_status(struct ChildRecord *child, int *stat_loc)
if (stat_loc) {
*stat_loc = exitcode << 8;
if (exitcode & 0xC0000000) {
static struct {
static const struct {
DWORD status;
int sig;
} table[] = {