From ec0138f98f8b77c20d87def12dbc96538a4b8d9a Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Fri, 19 Oct 2007 11:15:50 +0000 Subject: [PATCH] Author: Evan Teran - Fix typo in GlobalAlloc parameters. svn path=/trunk/; revision=29678 --- reactos/dll/win32/shell32/shell32_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/shell32/shell32_main.c b/reactos/dll/win32/shell32/shell32_main.c index b974f8d63d9..63f81f39b8f 100644 --- a/reactos/dll/win32/shell32/shell32_main.c +++ b/reactos/dll/win32/shell32/shell32_main.c @@ -97,7 +97,7 @@ LPWSTR* WINAPI CommandLineToArgvW(LPCWSTR lpCmdline, int* numargs) /* Return the path to the executable */ DWORD len, size=16; - hargv=GlobalAlloc(size, 0); + hargv=GlobalAlloc(0, size); argv=GlobalLock(hargv); for (;;) {