winedbg: For stack info command, display information in 'a' format (instead of 'x') to get word size machine (instead of forcing 32bit).

This commit is contained in:
Eric Pouech 2010-04-19 22:33:26 +02:00 committed by Alexandre Julliard
parent 3833600c79
commit 285200b29b

View File

@ -50,7 +50,9 @@ void stack_info(void)
dbg_printf("Stack dump:\n"); dbg_printf("Stack dump:\n");
switch (lvalue.addr.Mode) switch (lvalue.addr.Mode)
{ {
case AddrModeFlat: /* 32-bit mode */ case AddrModeFlat: /* 32-bit or 64-bit mode */
memory_examine(&lvalue, 24, 'a');
break;
case AddrMode1632: /* 32-bit mode */ case AddrMode1632: /* 32-bit mode */
memory_examine(&lvalue, 24, 'x'); memory_examine(&lvalue, 24, 'x');
break; break;