ruby-changes:40750
From: nobu <ko1@a...>
Date: Tue, 1 Dec 2015 13:25:23 +0900 (JST)
Subject: [ruby-changes:40750] nobu:r52829 (trunk): win32.c: fix argument type
nobu 2015-12-01 13:25:06 +0900 (Tue, 01 Dec 2015) New Revision: 52829 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=52829 Log: win32.c: fix argument type * win32/win32.c (dupfd): promote argument type for old VC. Modified files: trunk/win32/win32.c Index: win32/win32.c =================================================================== --- win32/win32.c (revision 52828) +++ win32/win32.c (revision 52829) @@ -4115,7 +4115,7 @@ setfl(SOCKET sock, int arg) https://github.com/ruby/ruby/blob/trunk/win32/win32.c#L4115 /* License: Ruby's */ static int -dupfd(HANDLE hDup, char flags, int minfd) +dupfd(HANDLE hDup, int flags, int minfd) { int save_errno; int ret; -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/