Module: wine Branch: master Commit: 6834945ece92fb88e8fd4b939c82335007d6e095 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6834945ece92fb88e8fd4b939c...
Author: Francois Gouget fgouget@free.fr Date: Thu Jan 18 11:37:36 2007 +0100
winmm/tests: Use '%u' to print GetLastError().
---
dlls/winmm/tests/timer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winmm/tests/timer.c b/dlls/winmm/tests/timer.c index 22ce81d..7ac86b9 100644 --- a/dlls/winmm/tests/timer.c +++ b/dlls/winmm/tests/timer.c @@ -167,7 +167,7 @@ static void CALLBACK priorityTimeProc(UI 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; }