mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
winedbg: Native dbghelp generate long basic types, so handle them too.
This commit is contained in:
parent
fd79923100
commit
9766dd1a5f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user