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:
parent
24dcb1285d
commit
9fcfaa8da4
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue