Michael Stefaniuc : winecoreaudio.drv: Use debugstr_guid() to trace a guid.
Module: wine Branch: master Commit: 5e7c8928115bab45b22054766e6efccefb060d0e URL: http://source.winehq.org/git/wine.git/?a=commit;h=5e7c8928115bab45b22054766e... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Sun Aug 7 22:13:46 2016 +0200 winecoreaudio.drv: Use debugstr_guid() to trace a guid. Signed-off-by: Michael Stefaniuc <mstefani(a)redhat.de> Signed-off-by: Andrew Eikum <aeikum(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/winecoreaudio.drv/mmdevdrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winecoreaudio.drv/mmdevdrv.c b/dlls/winecoreaudio.drv/mmdevdrv.c index 8316d65..c362a51 100644 --- a/dlls/winecoreaudio.drv/mmdevdrv.c +++ b/dlls/winecoreaudio.drv/mmdevdrv.c @@ -2956,7 +2956,7 @@ static HRESULT WINAPI SimpleAudioVolume_SetMute(ISimpleAudioVolume *iface, AudioSessionWrapper *This = impl_from_ISimpleAudioVolume(iface); AudioSession *session = This->session; - TRACE("(%p)->(%u, %p)\n", session, mute, context); + TRACE("(%p)->(%u, %s)\n", session, mute, debugstr_guid(context)); if(context) FIXME("Notifications not supported yet\n");
participants (1)
-
Alexandre Julliard