mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
winedbg: Native dbghelp generate long basic types, so handle them too.
This commit is contained in:
parent
fd79923100
commit
9766dd1a5f
1 changed files with 2 additions and 0 deletions
|
@ -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 a new issue