From bd97b31dbcdf2ba3d170cd796a2252726e36bafd Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Fri, 20 Feb 2015 10:34:18 +0000 Subject: [PATCH] [KERNEL32_APITEST] - Use correct format specifier aka fix GCC build svn path=/trunk/; revision=66368 --- rostests/apitests/kernel32/TerminateProcess.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rostests/apitests/kernel32/TerminateProcess.c b/rostests/apitests/kernel32/TerminateProcess.c index 5483e11303c..1120bea7730 100644 --- a/rostests/apitests/kernel32/TerminateProcess.c +++ b/rostests/apitests/kernel32/TerminateProcess.c @@ -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