Commit 28fe3f76 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

dbghelp: Change pointer cast to DWORD_PTR.

parent 6b6ca1a8
...@@ -2524,7 +2524,7 @@ static BOOL pdb_process_internal(const struct process* pcs, ...@@ -2524,7 +2524,7 @@ static BOOL pdb_process_internal(const struct process* pcs,
} }
file_name = (const char*)file + size; file_name = (const char*)file + size;
file_name += strlen(file_name) + 1; 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 */ /* finish the remaining public and global information */
if (globalimage) if (globalimage)
......
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