Alexandre Julliard : quartz: Avoid a pointer cast in a trace.

Alexandre Julliard julliard at winehq.org
Thu Jan 8 08:31:07 CST 2009


Module: wine
Branch: master
Commit: 0014046adcdf0454b3b19a3de3a32f7ac69fa940
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0014046adcdf0454b3b19a3de3a32f7ac69fa940

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Jan  8 13:17:49 2009 +0100

quartz: Avoid a pointer cast in a trace.

---

 dlls/quartz/videorenderer.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/quartz/videorenderer.c b/dlls/quartz/videorenderer.c
index ac948d5..4d38164 100644
--- a/dlls/quartz/videorenderer.c
+++ b/dlls/quartz/videorenderer.c
@@ -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);
 




More information about the wine-cvs mailing list