Module: wine Branch: master Commit: e6a08a1e15db1f62869c1c15c12687d3959e64e6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e6a08a1e15db1f62869c1c15c1...
Author: Eric Pouech eric.pouech@orange.fr Date: Wed Mar 24 22:04:00 2010 +0100
dbghelp: Fixed a couple of portability issues to 64bit platforms.
---
dlls/dbghelp/dwarf.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c index 2432f89..d8aff0f 100644 --- a/dlls/dbghelp/dwarf.c +++ b/dlls/dbghelp/dwarf.c @@ -2213,7 +2213,7 @@ static BOOL dwarf2_lookup_loclist(const struct module_format* modfmt, const BYTE unsigned long ip, dwarf2_traverse_context_t* lctx) { - DWORD beg, end; + DWORD_PTR beg, end; const BYTE* ptr = start; DWORD len;
@@ -2240,7 +2240,7 @@ static BOOL dwarf2_lookup_loclist(const struct module_format* modfmt, const BYTE static enum location_error loc_compute_frame(struct process* pcs, const struct module_format* modfmt, const struct symt_function* func, - DWORD ip, struct location* frame) + DWORD_PTR ip, struct location* frame) { struct symt** psym = NULL; struct location* pframe; @@ -2292,7 +2292,7 @@ static void dwarf2_location_compute(struct process* pcs, struct location* loc) { struct location frame; - DWORD ip; + DWORD_PTR ip; int err; dwarf2_traverse_context_t lctx;