Module: wine Branch: master Commit: e9907520b8f144fa86a8d97cb5031c869e12af96 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e9907520b8f144fa86a8d97cb5...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Wed Jul 20 12:52:45 2016 +0300
avifil32: Use debugstr_guid() in TRACE() message.
Signed-off-by: Andrey Gusev andrey.goosev@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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))) {