Module: wine Branch: master Commit: 0f46f7538aa20e973115f2a84efa91cc9278ed20 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0f46f7538aa20e973115f2a84e...
Author: Michael Stefaniuc mstefani@redhat.de Date: Thu May 3 11:20:05 2012 +0200
strmbase: Print the debug string and not the pointer to it.
---
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;