Module: wine Branch: master Commit: b485f6c056c8808b43381e6af7a018946dd437fc URL: http://source.winehq.org/git/wine.git/?a=commit;h=b485f6c056c8808b43381e6af7...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Mar 21 23:40:16 2012 +0100
strmbase: Print the debug string and not the pointer to it.
---
dlls/strmbase/transform.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/strmbase/transform.c b/dlls/strmbase/transform.c index 981a201..012f68a 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; }