dbghelp: Change pointer cast to DWORD_PTR.
This commit is contained in:
parent
6b6ca1a801
commit
28fe3f76c0
|
@ -2524,7 +2524,7 @@ static BOOL pdb_process_internal(const struct process* pcs,
|
|||
}
|
||||
file_name = (const char*)file + size;
|
||||
file_name += strlen(file_name) + 1;
|
||||
file = (BYTE*)((DWORD)(file_name + strlen(file_name) + 1 + 3) & ~3);
|
||||
file = (BYTE*)((DWORD_PTR)(file_name + strlen(file_name) + 1 + 3) & ~3);
|
||||
}
|
||||
/* finish the remaining public and global information */
|
||||
if (globalimage)
|
||||
|
|
Loading…
Reference in New Issue