From 6834945ece92fb88e8fd4b939c82335007d6e095 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 18 Jan 2007 11:37:36 +0100 Subject: [PATCH] winmm/tests: Use '%u' to print GetLastError(). --- dlls/winmm/tests/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winmm/tests/timer.c b/dlls/winmm/tests/timer.c index 22ce81de56..7ac86b9937 100644 --- a/dlls/winmm/tests/timer.c +++ b/dlls/winmm/tests/timer.c @@ -167,7 +167,7 @@ static void CALLBACK priorityTimeProc(UINT uID, UINT uMsg, DWORD_PTR dwUser, DWORD_PTR dw1, DWORD_PTR dw2) { priority = GetThreadPriority(GetCurrentThread()); - ok(priority!=THREAD_PRIORITY_ERROR_RETURN, "GetThreadPriority() failed, GetLastError() = %08x\n", GetLastError()); + ok(priority!=THREAD_PRIORITY_ERROR_RETURN, "GetThreadPriority() failed, GetLastError() = %u\n", GetLastError()); fired = TRUE; }