win32.c: adjust type

* win32/win32.c (NtCmdLineElement): use long instead of int for
  rb_w32_wstr_to_mbstr.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45593 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-04-15 16:23:07 +00:00
parent 1242292de9
commit 7d66f95523

View File

@ -1449,7 +1449,7 @@ rb_w32_uaspawn(int mode, const char *prog, char *const *argv)
typedef struct _NtCmdLineElement {
struct _NtCmdLineElement *next;
char *str;
int len;
long len;
int flags;
} NtCmdLineElement;