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

win32.c: fix argument type

* win32/win32.c (dupfd): promote argument type for old VC.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52829 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-12-01 04:25:06 +00:00
parent 24dcb1285d
commit 9fcfaa8da4

View file

@ -4115,7 +4115,7 @@ setfl(SOCKET sock, int arg)
/* License: Ruby's */
static int
dupfd(HANDLE hDup, char flags, int minfd)
dupfd(HANDLE hDup, int flags, int minfd)
{
int save_errno;
int ret;