avifil32: Use debugstr_guid() in TRACE() message.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b713c438c1
commit
e9907520b8
|
@ -56,7 +56,7 @@ static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
|
||||||
static HRESULT WINAPI IClassFactory_fnQueryInterface(IClassFactory *iface, REFIID riid,
|
static HRESULT WINAPI IClassFactory_fnQueryInterface(IClassFactory *iface, REFIID riid,
|
||||||
void **ppobj)
|
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)) ||
|
if ((IsEqualGUID(&IID_IUnknown, riid)) ||
|
||||||
(IsEqualGUID(&IID_IClassFactory, riid))) {
|
(IsEqualGUID(&IID_IClassFactory, riid))) {
|
||||||
|
|
Loading…
Reference in New Issue