winedbg: Fix disassemble with end addresses exceeding 32-bit.

Signed-off-by: Bernhard Übelacker <bernhardu@mailbox.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Bernhard Übelacker 2021-12-18 20:07:54 +01:00 committed by Alexandre Julliard
parent d45d54ef18
commit f174f18f2f
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,7 @@ void memory_disassemble(const struct dbg_lvalue* xstart,
const struct dbg_lvalue* xend, int instruction_count)
{
static ADDRESS64 last = {0,0,0};
int stop = 0;
dbg_lgint_t stop = 0;
int i;
if (!xstart && !xend)