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:
Eric Pouech 2022-01-27 10:17:20 +01:00 committed by Alexandre Julliard
parent 61d5e8fd1c
commit aa9eb8e067
1 changed files with 1 additions and 1 deletions

View File

@ -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; 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; char value8;
short value16; short value16;