scrrun: Silence unknown interfaces.

This commit is contained in:
Alistair Leslie-Hughes 2012-09-21 13:29:02 +10:00 committed by Alexandre Julliard
parent 0fd6649988
commit 5912bdeec2
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ static HRESULT WINAPI dictionary_QueryInterface(IDictionary *iface, REFIID riid,
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
WARN("interface %s not implemented\n", debugstr_guid(riid));
return E_NOINTERFACE;
}

View File

@ -54,7 +54,7 @@ static HRESULT WINAPI scrruncf_QueryInterface(IClassFactory *iface, REFIID riid,
return S_OK;
}
FIXME("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
WARN("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
return E_NOINTERFACE;
}