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

Alexandre Julliard julliard at winehq.org
Mon Mar 26 12:29:32 CDT 2012


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Wed Mar 21 23:39:16 2012 +0100

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

---

 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 */
 




More information about the wine-cvs mailing list