mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 17:43:44 +00:00
dbghelp: Fixed a couple of portability issues to 64bit platforms.
This commit is contained in:
parent
51e9951a5f
commit
e6a08a1e15
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue