From e3cb3832093dc26fbd140363d5696f3ea918f238 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Fri, 9 Jan 2009 11:09:08 +0000 Subject: [PATCH] * arch-utils.c (gdbarch_update_p): Use host_address_to_string to print the address of the gdbarch pointer. --- gdb/ChangeLog | 5 +++++ gdb/arch-utils.c | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 32892ece44..949a9fd026 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-01-09 Joel Brobecker + + * arch-utils.c (gdbarch_update_p): Use host_address_to_string + to print the address of the gdbarch pointer. + 2009-01-09 Joel Brobecker * gdbarch.sh: Fix all the compilation errors on amd64-windows diff --git a/gdb/arch-utils.c b/gdb/arch-utils.c index 41c4933409..c1ea9da363 100644 --- a/gdb/arch-utils.c +++ b/gdb/arch-utils.c @@ -495,8 +495,8 @@ gdbarch_update_p (struct gdbarch_info info) { if (gdbarch_debug) fprintf_unfiltered (gdb_stdlog, "gdbarch_update_p: " - "Architecture 0x%08lx (%s) unchanged\n", - (long) new_gdbarch, + "Architecture %s (%s) unchanged\n", + host_address_to_string (new_gdbarch), gdbarch_bfd_arch_info (new_gdbarch)->printable_name); return 1; } @@ -504,8 +504,8 @@ gdbarch_update_p (struct gdbarch_info info) /* It's a new architecture, swap it in. */ if (gdbarch_debug) fprintf_unfiltered (gdb_stdlog, "gdbarch_update_p: " - "New architecture 0x%08lx (%s) selected\n", - (long) new_gdbarch, + "New architecture %s (%s) selected\n", + host_address_to_string (new_gdbarch), gdbarch_bfd_arch_info (new_gdbarch)->printable_name); deprecated_current_gdbarch_select_hack (new_gdbarch);