diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-18 05:10:09 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-05-18 05:10:09 +0000 |
commit | a70902a5c9888b45cedc235fd913b7ab88e8c9f6 (patch) | |
tree | 0331c50fb06c3b7ccd404c394176c1ff8a4c8dd1 /win32/win32.c | |
parent | 8e5dee50ead000a3e7fdaaa3a629d947037c91f9 (diff) |
* win32/win32.c (NtInitialize): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8478 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/win32.c')
-rw-r--r-- | win32/win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c index dc4d2848ee..3e126e64fc 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -424,7 +424,7 @@ NtInitialize(int *argc, char ***argv) // // subvert cmd.exe's feeble attempt at command line parsing // - *argc = make_cmdvector(GetCommandLine(), argv); + *argc = rb_w32_cmdvector(GetCommandLine(), argv); // // Now set up the correct time stuff |