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:
parent
50cc7057af
commit
30afde959b
1 changed files with 1 additions and 1 deletions
|
@ -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[] = {
|
||||
|
|
Loading…
Add table
Reference in a new issue