avifil32: Use debugstr_guid() in TRACE() message.

Andrey Gusev andrey.goosev at gmail.com
Wed Jul 20 04:54:09 CDT 2016


-------------- next part --------------
From caad9f12e31d0801a7a89310f4776743ee5a4273 Mon Sep 17 00:00:00 2001
Message-Id: <caad9f12e31d0801a7a89310f4776743ee5a4273.1469008385.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Wed, 20 Jul 2016 12:52:45 +0300
Subject: [PATCH] avifil32: Use debugstr_guid() in TRACE() message.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/avifil32/factory.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/avifil32/factory.c b/dlls/avifil32/factory.c
index 30fa604..98231e8 100644
--- a/dlls/avifil32/factory.c
+++ b/dlls/avifil32/factory.c
@@ -56,7 +56,7 @@ static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
 static HRESULT WINAPI IClassFactory_fnQueryInterface(IClassFactory *iface, REFIID riid,
         void **ppobj)
 {
-  TRACE("(%p,%p,%p)\n", iface, riid, ppobj);
+  TRACE("(%p,%s,%p)\n", iface, debugstr_guid(riid), ppobj);
 
   if ((IsEqualGUID(&IID_IUnknown, riid)) ||
       (IsEqualGUID(&IID_IClassFactory, riid))) {
-- 
2.5.5



More information about the wine-patches mailing list