Module: wine Branch: master Commit: 454110ee34d18b5485ee2e17c8ac9df627fc6564 URL: http://source.winehq.org/git/wine.git/?a=commit;h=454110ee34d18b5485ee2e17c8...
Author: Michael Stefaniuc mstefani@redhat.de Date: Wed Mar 21 23:38:46 2012 +0100
qedit: Print the debug string and not the pointer to it.
---
dlls/qedit/mediadet.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/qedit/mediadet.c b/dlls/qedit/mediadet.c index edb7be5..a88dc9d 100644 --- a/dlls/qedit/mediadet.c +++ b/dlls/qedit/mediadet.c @@ -243,7 +243,7 @@ static HRESULT WINAPI MediaDet_put_CurrentStream(IMediaDet* iface, LONG newVal) static HRESULT WINAPI MediaDet_get_StreamType(IMediaDet* iface, GUID *pVal) { MediaDetImpl *This = impl_from_IMediaDet(iface); - FIXME("(%p)->(%p): not implemented!\n", This, debugstr_guid(pVal)); + FIXME("(%p)->(%s): not implemented!\n", This, debugstr_guid(pVal)); return E_NOTIMPL; }