mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[KERNEL32_APITEST]
- Use correct format specifier aka fix GCC build svn path=/trunk/; revision=66368
This commit is contained in:
parent
93c0d33c18
commit
bd97b31dbc
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ CloseProcessAndVerify_(
|
|||
Error = GetLastError();
|
||||
ok_(File, Line)(hProcess == NULL, "OpenProcess succeeded unexpectedly for pid 0x%lx\n", ProcessId);
|
||||
ok_(File, Line)(Error == ERROR_INVALID_PARAMETER, "Error = %lu\n", Error);
|
||||
ok_(File, Line)(ExitCode == ExpectedExitCode, "Exit code is %lu but expected %lu\n", ExitCode, ExpectedExitCode);
|
||||
ok_(File, Line)(ExitCode == ExpectedExitCode, "Exit code is %lu but expected %u\n", ExitCode, ExpectedExitCode);
|
||||
}
|
||||
|
||||
static
|
||||
|
|
Loading…
Reference in a new issue