msi: Use debugstr_guid() in TRACE() messages.

Andrey Gusev andrey.goosev at gmail.com
Thu Jul 21 10:55:27 CDT 2016


-------------- next part --------------
From 29f273af8abc097feef976d401b83414a22fa658 Mon Sep 17 00:00:00 2001
Message-Id: <29f273af8abc097feef976d401b83414a22fa658.1469116462.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Thu, 21 Jul 2016 18:54:07 +0300
Subject: [PATCH] msi: Use debugstr_guid() in TRACE() messages.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 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



More information about the wine-patches mailing list