Andrey Gusev : mmdevapi: Use debugstr_guid() in TRACE() message.
Module: wine Branch: master Commit: 424e2addfaa57a88902b452ebf13eabb919f184a URL: http://source.winehq.org/git/wine.git/?a=commit;h=424e2addfaa57a88902b452ebf... Author: Andrey Gusev <andrey.goosev(a)gmail.com> Date: Fri Jul 22 12:58:45 2016 +0300 mmdevapi: Use debugstr_guid() in TRACE() message. Signed-off-by: Andrey Gusev <andrey.goosev(a)gmail.com> Signed-off-by: Andrew Eikum <aeikum(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/mmdevapi/devenum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mmdevapi/devenum.c b/dlls/mmdevapi/devenum.c index 9e8d8a5..b8b714c 100644 --- a/dlls/mmdevapi/devenum.c +++ b/dlls/mmdevapi/devenum.c @@ -588,7 +588,7 @@ static HRESULT WINAPI MMDevice_Activate(IMMDevice *iface, REFIID riid, DWORD cls HRESULT hr = E_NOINTERFACE; MMDevice *This = impl_from_IMMDevice(iface); - TRACE("(%p)->(%p,%x,%p,%p)\n", iface, riid, clsctx, params, ppv); + TRACE("(%p)->(%s, %x, %p, %p)\n", iface, debugstr_guid(riid), clsctx, params, ppv); if (!ppv) return E_POINTER;
participants (1)
-
Alexandre Julliard