From b485f6c056c8808b43381e6af7a018946dd437fc Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Wed, 21 Mar 2012 23:40:16 +0100 Subject: [PATCH] strmbase: Print the debug string and not the pointer to it. --- dlls/strmbase/transform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/strmbase/transform.c b/dlls/strmbase/transform.c index 981a201c370..012f68a8ea1 100644 --- a/dlls/strmbase/transform.c +++ b/dlls/strmbase/transform.c @@ -377,7 +377,7 @@ HRESULT WINAPI TransformFilterImpl_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin { TransformFilter *This = (TransformFilter *)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); return E_NOTIMPL; } -- 2.11.4.GIT