psapi: Remove superfluous pointer casts.

Michael Stefaniuc mstefani at redhat.de
Fri Jan 30 03:39:42 CST 2009


---
 dlls/psapi/psapi_main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/psapi/psapi_main.c b/dlls/psapi/psapi_main.c
index 7f90a21..72484dc 100644
--- a/dlls/psapi/psapi_main.c
+++ b/dlls/psapi/psapi_main.c
@@ -135,7 +135,7 @@ static BOOL PSAPI_GetLdrModule(HANDLE hProcess, HMODULE hModule,
     while ((ret = PSAPI_ModuleIteratorNext(&iter)) > 0)
         /* When hModule is NULL we return the process image - which will be
          * the first module since our iterator uses InLoadOrderModuleList */
-        if (!hModule || hModule == (HMODULE)iter.LdrModule.BaseAddress)
+        if (!hModule || hModule == iter.LdrModule.BaseAddress)
         {
             *pLdrModule = iter.LdrModule;
             return TRUE;
@@ -256,7 +256,7 @@ BOOL WINAPI EnumProcessModules(HANDLE hProcess, HMODULE *lphModule,
     {
         if (cb >= sizeof(HMODULE))
         {
-            *lphModule++ = (HMODULE)iter.LdrModule.BaseAddress;
+            *lphModule++ = iter.LdrModule.BaseAddress;
             cb -= sizeof(HMODULE);
         }
         *lpcbNeeded += sizeof(HMODULE);
-- 
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/20090130/346c28a1/attachment.pgp 


More information about the wine-patches mailing list