d3dx9: Fix an error trace.

This commit is contained in:
Matteo Bruni 2014-03-05 18:35:16 +01:00 committed by Alexandre Julliard
parent 22e75c69ab
commit db8e1df742
1 changed files with 1 additions and 1 deletions

View File

@ -4382,7 +4382,7 @@ static HRESULT d3dx9_copy_data(struct d3dx_object *object, const char **ptr)
object->data = HeapAlloc(GetProcessHeap(), 0, object->size);
if (!object->data)
{
ERR("Failed to allocate name memory.\n");
ERR("Failed to allocate object memory.\n");
return E_OUTOFMEMORY;
}