quartz: Avoid a pointer cast in a trace.

This commit is contained in:
Alexandre Julliard 2009-01-08 13:17:49 +01:00
parent 4984d19072
commit 0014046adc
1 changed files with 1 additions and 1 deletions

View File

@ -1989,7 +1989,7 @@ static HRESULT WINAPI Videowindow_get_Owner(IVideoWindow *iface,
OAHWND *Owner) {
ICOM_THIS_MULTI(VideoRendererImpl, IVideoWindow_vtbl, iface);
TRACE("(%p/%p)->(%08x)\n", This, iface, (DWORD) Owner);
TRACE("(%p/%p)->(%p)\n", This, iface, Owner);
*(HWND*)Owner = GetParent(This->hWnd);