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

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Andrey Gusev 2016-07-20 12:52:45 +03:00 committed by Alexandre Julliard
parent b713c438c1
commit e9907520b8
1 changed files with 1 additions and 1 deletions

View File

@ -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))) {