From: Pierre Muller Date: Tue, 6 Oct 2009 15:32:18 +0000 (+0000) Subject: * ARI fix: "%p" rule. X-Git-Tag: sid-snapshot-20091101~330 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=67e5d36c367cd76c48411f65cc759ade26ae587a;p=thirdparty%2Fbinutils-gdb.git * ARI fix: "%p" rule. target.c (debug_to_thread_architecture): Replace %p by %s using host_address_to_string function. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8e7bf5f22d6..36887fa30ee 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2009-10-06 Pierre Muller + + * ARI fix: "%p" rule. + target.c (debug_to_thread_architecture): Replace %p by %s using + host_address_to_string function. + 2009-10-06 Tristan Gingold * darwin-nat.c: Add __TEXT __info_plist content. diff --git a/gdb/target.c b/gdb/target.c index e5d14fd1039..1ba8b3555a3 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -3367,8 +3367,8 @@ debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid) retval = debug_target.to_thread_architecture (ops, ptid); - fprintf_unfiltered (gdb_stdlog, "target_thread_architecture (%s) = %p [%s]\n", - target_pid_to_str (ptid), retval, + fprintf_unfiltered (gdb_stdlog, "target_thread_architecture (%s) = %s [%s]\n", + target_pid_to_str (ptid), host_address_to_string (retval), gdbarch_bfd_arch_info (retval)->printable_name); return retval; }