d3dxof: Remove superfluous pointer casts.

Michael Stefaniuc mstefani at redhat.de
Thu Jan 29 04:15:46 CST 2009


---
 dlls/d3dxof/d3dxof.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/d3dxof/d3dxof.c b/dlls/d3dxof/d3dxof.c
index 8cf953b..6aa0032 100644
--- a/dlls/d3dxof/d3dxof.c
+++ b/dlls/d3dxof/d3dxof.c
@@ -143,7 +143,7 @@ static HRESULT WINAPI IDirectXFileImpl_CreateEnumObject(IDirectXFile* iface, LPV
   {
     TRACE("Open source file '%s'\n", (char*)pvSource);
 
-    hFile = CreateFileA((char*)pvSource, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
+    hFile = CreateFileA(pvSource, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
     if (hFile == INVALID_HANDLE_VALUE)
     {
       TRACE("File '%s' not found\n", (char*)pvSource);
@@ -164,11 +164,11 @@ static HRESULT WINAPI IDirectXFileImpl_CreateEnumObject(IDirectXFile* iface, LPV
   }
   else if (dwLoadOptions == DXFILELOAD_FROMMEMORY)
   {
-    lpdxflm = (LPDXFILELOADMEMORY)pvSource;
+    lpdxflm = pvSource;
 
     TRACE("Source in memory at %p with size %d\n", lpdxflm->lpMemory, lpdxflm->dSize);
 
-    memcpy(header, (char*)lpdxflm->lpMemory, 16);
+    memcpy(header, lpdxflm->lpMemory, 16);
   }
   else
   {
@@ -311,7 +311,7 @@ static HRESULT WINAPI IDirectXFileImpl_RegisterTemplates(IDirectXFile* iface, LP
   DWORD token_header;
   parse_buffer buf;
 
-  buf.buffer = (LPBYTE)pvData;
+  buf.buffer = pvData;
   buf.rem_bytes = cbSize;
   buf.txt = FALSE;
   buf.token_present = FALSE;
-- 
1.6.0.6
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://www.winehq.org/pipermail/wine-patches/attachments/20090129/2834070b/attachment.pgp 


More information about the wine-patches mailing list