From f010a930dff00e959dec37c520ce366e9ce88eb3 Mon Sep 17 00:00:00 2001 From: Ken Thomases Date: Tue, 4 Jun 2013 04:59:47 -0500 Subject: [PATCH] winemac: Improve the debug tracing in macdrv_SetWindowStyle(). --- dlls/winemac.drv/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winemac.drv/window.c b/dlls/winemac.drv/window.c index 77d2ea0f061..eacc0b6ecc2 100644 --- a/dlls/winemac.drv/window.c +++ b/dlls/winemac.drv/window.c @@ -962,7 +962,7 @@ void CDECL macdrv_SetWindowStyle(HWND hwnd, INT offset, STYLESTRUCT *style) { struct macdrv_win_data *data; - TRACE("%p, %d, %p\n", hwnd, offset, style); + TRACE("hwnd %p offset %d styleOld 0x%08x styleNew 0x%08x\n", hwnd, offset, style->styleOld, style->styleNew); if (hwnd == GetDesktopWindow()) return; if (!(data = get_win_data(hwnd))) return;