winedbg: Use correct integral type.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
61d5e8fd1c
commit
aa9eb8e067
|
@ -341,7 +341,7 @@ static BOOL be_x86_64_is_break_insn(const void* insn)
|
|||
return dbg_read_memory(insn, &c, sizeof(c)) && c == 0xCC;
|
||||
}
|
||||
|
||||
static BOOL fetch_value(const char* addr, unsigned sz, int* value)
|
||||
static BOOL fetch_value(const char* addr, unsigned sz, LONG* value)
|
||||
{
|
||||
char value8;
|
||||
short value16;
|
||||
|
|
Loading…
Reference in New Issue