Commit 6b3c0ecf authored by Evan Teran's avatar Evan Teran Committed by Alexandre Julliard

shell32: Fix typo in GlobalAlloc parameters.

parent d5b620ea
......@@ -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 (;;)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment