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

* process.c (run_exec_dup2): fixed type.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25031 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-09-21 21:08:23 +00:00
parent fe1ce93f52
commit 089beb67bd

View file

@ -1925,7 +1925,7 @@ run_exec_dup2(VALUE ary, VALUE save, char *errmsg, size_t errmsg_buflen)
int oldfd;
int newfd;
long older_index;
int num_newer;
long num_newer;
} *pairs = 0;
n = RARRAY_LEN(ary);