ddraw: Replace an ERR in IDirect3DDeviceImpl_7_QueryInterface() with a WARN.

This commit is contained in:
Henri Verbeet 2012-04-03 21:15:13 +02:00 committed by Alexandre Julliard
parent 4f91eb3fe1
commit cd8508a915
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ IDirect3DDeviceImpl_7_QueryInterface(IDirect3DDevice7 *iface,
/* Unknown interface */
else
{
ERR("(%p)->(%s, %p): No interface found\n", This, debugstr_guid(refiid), obj);
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(refiid));
return E_NOINTERFACE;
}