From: Andrey Gusev Subject: msi: Use debugstr_guid() in TRACE() messages. Message-Id: Date: Thu, 21 Jul 2016 18:55:27 +0300 From 29f273af8abc097feef976d401b83414a22fa658 Mon Sep 17 00:00:00 2001 Message-Id: <29f273af8abc097feef976d401b83414a22fa658.1469116462.git.andrey.goosev@gmail.com> From: Andrey Gusev Date: Thu, 21 Jul 2016 18:54:07 +0300 Subject: [PATCH] msi: Use debugstr_guid() in TRACE() messages. Signed-off-by: Andrey Gusev --- dlls/msi/automation.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msi/automation.c b/dlls/msi/automation.c index c3d2c67..fbd070f 100644 --- a/dlls/msi/automation.c +++ b/dlls/msi/automation.c @@ -289,7 +289,7 @@ static HRESULT WINAPI AutomationObject_GetIDsOfNames( ITypeInfo *ti; HRESULT hr; - TRACE("(%p/%p)->(%p,%p,%d,%d,%p)\n", iface, This, riid, rgszNames, cNames, lcid, rgDispId); + TRACE("(%p/%p)->(%s,%p,%d,%d,%p)\n", iface, This, debugstr_guid(riid), rgszNames, cNames, lcid, rgDispId); if (!IsEqualGUID(riid, &IID_NULL)) return E_INVALIDARG; @@ -332,7 +332,7 @@ static HRESULT WINAPI AutomationObject_Invoke( BSTR bstrName = NULL; ITypeInfo *ti; - TRACE("(%p/%p)->(%d,%p,%d,%d,%p,%p,%p,%p)\n", iface, This, dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); + TRACE("(%p/%p)->(%d,%s,%d,%d,%p,%p,%p,%p)\n", iface, This, dispIdMember, debugstr_guid(riid), lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); if (!IsEqualIID(riid, &IID_NULL)) { -- 2.5.5