Module: wine Branch: master Commit: f7a21ee1d748bebe9c6074f0f01a3e01f52ff68f URL: http://source.winehq.org/git/wine.git/?a=commit;h=f7a21ee1d748bebe9c6074f0f0...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Mar 24 10:01:26 2015 +0100
qcap: Print the debug string instead of the pointer value.
---
dlls/qcap/avimux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/qcap/avimux.c b/dlls/qcap/avimux.c index 0a73942..44a032a 100644 --- a/dlls/qcap/avimux.c +++ b/dlls/qcap/avimux.c @@ -1015,7 +1015,7 @@ static HRESULT WINAPI MediaSeeking_SetTimeFormat( IMediaSeeking *iface, const GUID *pFormat) { AviMux *This = impl_from_IMediaSeeking(iface); - FIXME("(%p)->(%p)\n", This, debugstr_guid(pFormat)); + FIXME("(%p)->(%s)\n", This, debugstr_guid(pFormat)); return E_NOTIMPL; }