winedbg: Enforce 64bit modules address on 64bit platforms.

This commit is contained in:
Eric Pouech 2009-12-12 12:19:08 +01:00 committed by Alexandre Julliard
parent b4da46ebe8
commit 485280c64b
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ enum dbg_internal_types
struct dbg_type
{
unsigned long id;
DWORD module;
DWORD_PTR module;
};
struct dbg_lvalue /* structure to hold left-values... */

View File

@ -561,7 +561,7 @@ static BOOL CALLBACK print_types_cb(PSYMBOL_INFO sym, ULONG size, void* ctx)
struct dbg_type type;
type.module = sym->ModBase;
type.id = sym->TypeIndex;
dbg_printf("Mod: %08x ID: %08lx\n", type.module, type.id);
dbg_printf("Mod: %08lx ID: %08lx\n", type.module, type.id);
types_print_type(&type, TRUE);
dbg_printf("\n");
return TRUE;