quartz: Avoid a pointer cast in a trace.
This commit is contained in:
parent
4984d19072
commit
0014046adc
|
@ -1989,7 +1989,7 @@ static HRESULT WINAPI Videowindow_get_Owner(IVideoWindow *iface,
|
||||||
OAHWND *Owner) {
|
OAHWND *Owner) {
|
||||||
ICOM_THIS_MULTI(VideoRendererImpl, IVideoWindow_vtbl, iface);
|
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);
|
*(HWND*)Owner = GetParent(This->hWnd);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue