Skip to content
Snippets Groups Projects
Commit 6c7d5f50 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard
Browse files

Fix format specifiers for HWNDs.

parent ed272490
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ BOOL TTYDRV_CreateWindow( HWND hwnd, CREATESTRUCTA *cs, BOOL unicode )
wndPtr->pDriverData = window;
}
#else /* defined(WINE_CURSES) */
FIXME("(%x): stub\n", hwnd);
FIXME("(%p): stub\n", hwnd);
#endif /* defined(WINE_CURSES) */
WIN_ReleasePtr( wndPtr );
......@@ -118,7 +118,7 @@ BOOL TTYDRV_DestroyWindow( HWND hwnd )
wndPtr->pDriverData = NULL;
WIN_ReleasePtr( wndPtr );
#else /* defined(WINE_CURSES) */
FIXME("(%x): stub\n", hwnd);
FIXME("(%p): stub\n", hwnd);
#endif /* defined(WINE_CURSES) */
return TRUE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment