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

This commit is contained in:
Michael Stefaniuc 2012-05-03 11:20:05 +02:00 committed by Alexandre Julliard
parent 56bf46fda0
commit 0f46f7538a
1 changed files with 1 additions and 1 deletions

View File

@ -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;