Author: tfaber
Date: Fri Feb 20 10:34:18 2015
New Revision: 66368
URL:
http://svn.reactos.org/svn/reactos?rev=66368&view=rev
Log:
[KERNEL32_APITEST]
- Use correct format specifier aka fix GCC build
Modified:
trunk/rostests/apitests/kernel32/TerminateProcess.c
Modified: trunk/rostests/apitests/kernel32/TerminateProcess.c
URL:
http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/kernel32/Termina…
==============================================================================
--- trunk/rostests/apitests/kernel32/TerminateProcess.c [iso-8859-1] (original)
+++ trunk/rostests/apitests/kernel32/TerminateProcess.c [iso-8859-1] Fri Feb 20 10:34:18
2015
@@ -136,7 +136,7 @@
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