d3dcompiler: Remove type cast in D3DCreateBlob().

This commit is contained in:
Rico Schüller 2011-04-01 15:00:16 +02:00 committed by Alexandre Julliard
parent 670f0efe5c
commit c4530c56d1
1 changed files with 2 additions and 2 deletions

View File

@ -161,9 +161,9 @@ HRESULT WINAPI D3DCreateBlob(SIZE_T data_size, ID3DBlob **blob)
return hr;
}
*blob = (ID3DBlob *)object;
*blob = &object->ID3DBlob_iface;
TRACE("Created ID3DBlob %p\n", object);
TRACE("Created ID3DBlob %p\n", *blob);
return S_OK;
}