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

Michael Stefaniuc mstefani at redhat.de
Thu May 3 04:20:05 CDT 2012


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

diff --git a/dlls/strmbase/renderer.c b/dlls/strmbase/renderer.c
index c2a7e83..1f950f9 100644
--- a/dlls/strmbase/renderer.c
+++ b/dlls/strmbase/renderer.c
@@ -419,7 +419,7 @@ HRESULT WINAPI BaseRendererImpl_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin **
 {
     BaseRenderer *This = impl_from_IBaseFilter(iface);
 
-    TRACE("(%p)->(%p,%p)\n", This, debugstr_w(Id), ppPin);
+    TRACE("(%p)->(%s,%p)\n", This, debugstr_w(Id), ppPin);
 
     if (!Id || !ppPin)
         return E_POINTER;
-- 
1.7.7.6



More information about the wine-patches mailing list