quartz: Print the debug string and not the pointer to it.

Michael Stefaniuc mstefani at redhat.de
Wed Mar 21 17:39:16 CDT 2012


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

diff --git a/dlls/quartz/nullrenderer.c b/dlls/quartz/nullrenderer.c
index dc1bd0f..9fc1b44 100644
--- a/dlls/quartz/nullrenderer.c
+++ b/dlls/quartz/nullrenderer.c
@@ -372,7 +372,7 @@ static HRESULT WINAPI NullRenderer_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin
 {
     NullRendererImpl *This = (NullRendererImpl *)iface;
 
-    TRACE("(%p/%p)->(%p,%p)\n", This, iface, debugstr_w(Id), ppPin);
+    TRACE("(%p/%p)->(%s,%p)\n", This, iface, debugstr_w(Id), ppPin);
 
     if (!Id || !ppPin)
         return E_POINTER;
diff --git a/dlls/quartz/videorenderer.c b/dlls/quartz/videorenderer.c
index 92a0c99..3e1004e 100644
--- a/dlls/quartz/videorenderer.c
+++ b/dlls/quartz/videorenderer.c
@@ -883,7 +883,7 @@ static HRESULT WINAPI VideoRenderer_FindPin(IBaseFilter * iface, LPCWSTR Id, IPi
 {
     VideoRendererImpl *This = (VideoRendererImpl *)iface;
 
-    FIXME("(%p/%p)->(%p,%p): stub !!!\n", This, iface, debugstr_w(Id), ppPin);
+    FIXME("(%p/%p)->(%s,%p): stub !!!\n", This, iface, debugstr_w(Id), ppPin);
 
     /* FIXME: critical section */
 
-- 
1.7.7.6



More information about the wine-patches mailing list