psapi/tests: Avoid "misleading indentation" warnings.
Signed-off-by: Fabian Maurer <dark.shadow4@web.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7cd6681b3b
commit
a112457c2b
|
@ -184,7 +184,7 @@ static void test_EnumProcessModules(void)
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
ret = EnumProcessModules(pi.hProcess, &hMod, sizeof(HMODULE), &cbNeeded);
|
ret = EnumProcessModules(pi.hProcess, &hMod, sizeof(HMODULE), &cbNeeded);
|
||||||
ok(!ret, "got %d\n", ret);
|
ok(!ret, "got %d\n", ret);
|
||||||
todo_wine
|
todo_wine
|
||||||
ok(GetLastError() == ERROR_PARTIAL_COPY, "got error %u\n", GetLastError());
|
ok(GetLastError() == ERROR_PARTIAL_COPY, "got error %u\n", GetLastError());
|
||||||
|
|
||||||
TerminateProcess(pi.hProcess, 0);
|
TerminateProcess(pi.hProcess, 0);
|
||||||
|
|
Loading…
Reference in New Issue