Commit 53582335 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

psapi: Remove superfluous pointer casts.

parent f209d115
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment