Commit 9766dd1a authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

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

parent fd799231
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment