winedbg: Native dbghelp generate long basic types, so handle them too.

This commit is contained in:
Eric Pouech 2006-08-27 08:50:33 +02:00 committed by Alexandre Julliard
parent fd79923100
commit 9766dd1a5f
1 changed files with 2 additions and 0 deletions

View File

@ -324,10 +324,12 @@ static void print_typed_basic(const struct dbg_lvalue* lvalue)
switch (bt)
{
case btInt:
case btLong:
if (!be_cpu->fetch_integer(lvalue, size, TRUE, &val_int)) return;
dbg_printf("%s", wine_dbgstr_longlong(val_int));
break;
case btUInt:
case btULong:
if (!be_cpu->fetch_integer(lvalue, size, FALSE, &val_int)) return;
dbg_printf("%s", wine_dbgstr_longlong(val_int));
break;