http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
670f0ef
)
d3dcompiler: Remove type cast in D3DCreateBlob().
author
Rico Schüller
<kgbricola@web.de>
Fri, 1 Apr 2011 13:00:16 +0000
(15:00 +0200)
committer
Alexandre Julliard
<julliard@winehq.org>
Mon, 4 Apr 2011 11:43:23 +0000
(13:43 +0200)
dlls/d3dcompiler_43/blob.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/d3dcompiler_43/blob.c
b/dlls/d3dcompiler_43/blob.c
index 4a5ff79bb9c315f9726a2920c0dbbde9c4226518..86fb791b09c45d1170d9b421a0738c844ea30d3f 100644
(file)
--- a/
dlls/d3dcompiler_43/blob.c
+++ b/
dlls/d3dcompiler_43/blob.c
@@
-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;
}