From 3894ecbdc40976b975c2cf4db9b76cb432e61f39 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Wed, 9 Nov 2011 18:52:09 +0000 Subject: [PATCH] [USER32] - Fix a TRACE. Spotted by Victor Martinez svn path=/trunk/; revision=54341 --- reactos/dll/win32/user32/windows/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/user32/windows/message.c b/reactos/dll/win32/user32/windows/message.c index 769a6727280..e590dcdee51 100644 --- a/reactos/dll/win32/user32/windows/message.c +++ b/reactos/dll/win32/user32/windows/message.c @@ -1512,7 +1512,7 @@ IntCallMessageProc(IN PWND Wnd, IN HWND hWnd, IN UINT Msg, IN WPARAM wParam, IN This is the message exchange for user32. If there's a need to monitor messages, do it here! */ - TRACE("HWND 0x%x, MSG %d, WPARAM 0x%x, LPARAM 0x%x, Ansi &d\n",hWnd,Msg,wParam,lParam,Ansi); + TRACE("HWND %p, MSG %u, WPARAM %p, LPARAM %p, Ansi %d\n", hWnd, Msg, wParam, lParam, Ansi); // if (Class->fnid <= FNID_GHOST && Class->fnid >= FNID_BUTTON ) if (Class->fnid <= FNID_GHOST && Class->fnid >= FNID_FIRST ) {