user32: Avoid a pointer cast in a trace.

This commit is contained in:
Alexandre Julliard 2009-01-08 13:13:05 +01:00
parent bb283bf534
commit 0128b10a3c
1 changed files with 2 additions and 2 deletions

View File

@ -768,8 +768,8 @@ HWND16 WINAPI CreateDialogParam16( HINSTANCE16 hInst, LPCSTR dlgTemplate,
HGLOBAL16 hmem;
LPCVOID data;
TRACE("%04x,%s,%04x,%08x,%ld\n",
hInst, debugstr_a(dlgTemplate), owner, (DWORD)dlgProc, param );
TRACE("%04x,%s,%04x,%p,%ld\n",
hInst, debugstr_a(dlgTemplate), owner, dlgProc, param );
if (!(hRsrc = FindResource16( hInst, dlgTemplate, (LPSTR)RT_DIALOG ))) return 0;
if (!(hmem = LoadResource16( hInst, hRsrc ))) return 0;