kernel32: Fix a typo.

This commit is contained in:
Dmitry Timoshkov 2013-05-29 10:39:54 +09:00 committed by Alexandre Julliard
parent aec4504c8a
commit 495c1c0086
1 changed files with 1 additions and 1 deletions

View File

@ -1612,8 +1612,8 @@ static void test_GetProcessVersion(void)
si.cb = sizeof(si);
si.dwFlags = STARTF_USESHOWWINDOW;
si.wShowWindow = SW_HIDE;
ret = CreateProcessA(NULL, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);
SetLastError(0xdeadbeef);
ret = CreateProcessA(NULL, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi);
ok(ret, "CreateProcess error %u\n", GetLastError());
SetLastError(0xdeadbeef);