dbghelp: Change pointer cast to DWORD_PTR.

This commit is contained in:
Austin English 2009-02-22 15:28:19 -06:00 committed by Alexandre Julliard
parent 6b6ca1a801
commit 28fe3f76c0
1 changed files with 1 additions and 1 deletions

View File

@ -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)