d3dx9_36: Not implementing an interface is not an internal error.

This commit is contained in:
Henri Verbeet 2010-03-14 21:53:22 +01:00 committed by Alexandre Julliard
parent d85730c8e3
commit a8b76781bf
2 changed files with 2 additions and 2 deletions

View File

@ -793,7 +793,7 @@ static HRESULT WINAPI ID3DXMatrixStackImpl_QueryInterface(ID3DXMatrixStack *ifac
return S_OK;
}
*ppobj = NULL;
ERR("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
WARN("(%p)->(%s,%p), not found\n", This, debugstr_guid(riid), ppobj);
return E_NOINTERFACE;
}

View File

@ -299,7 +299,7 @@ static HRESULT WINAPI ID3DXConstantTableImpl_QueryInterface(ID3DXConstantTable*
return S_OK;
}
ERR("Interface %s not found\n", debugstr_guid(riid));
WARN("Interface %s not found.\n", debugstr_guid(riid));
return E_NOINTERFACE;
}