winedbg: Print 64bit integers with wine_dbgstr_longlong.

This commit is contained in:
Stefan Leichter 2006-08-13 09:29:18 +02:00 committed by Alexandre Julliard
parent b3cf216d9b
commit 7ee81d7b03
1 changed files with 3 additions and 3 deletions

View File

@ -325,11 +325,11 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
{ {
case btInt: case btInt:
if (!be_cpu->fetch_integer(lvalue, size, TRUE, &val_int)) return; if (!be_cpu->fetch_integer(lvalue, size, TRUE, &val_int)) return;
dbg_printf("%lld", val_int); dbg_printf("%s", wine_dbgstr_longlong(val_int));
break; break;
case btUInt: case btUInt:
if (!be_cpu->fetch_integer(lvalue, size, FALSE, &val_int)) return; if (!be_cpu->fetch_integer(lvalue, size, FALSE, &val_int)) return;
dbg_printf("%llu", val_int); dbg_printf("%s", wine_dbgstr_longlong(val_int));
break; break;
case btFloat: case btFloat:
if (!be_cpu->fetch_float(lvalue, size, &val_real)) return; if (!be_cpu->fetch_float(lvalue, size, &val_real)) return;
@ -436,7 +436,7 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
count -= min(count, 256); count -= min(count, 256);
fcp->Start += 256; fcp->Start += 256;
} }
if (!ok) dbg_printf("%lld", val_int); if (!ok) dbg_printf("%s", wine_dbgstr_longlong(val_int));
} }
break; break;
default: default: