* ARI fix: "%p" rule.

target.c (debug_to_thread_architecture): Replace %p by %s using
	host_address_to_string function.
This commit is contained in:
Pierre Muller 2009-10-06 15:32:18 +00:00
parent 419c2fda00
commit 67e5d36c36
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2009-10-06 Pierre Muller <muller@ics.u-strasbg.fr>
* 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 <gingold@adacore.com>
* darwin-nat.c: Add __TEXT __info_plist content.

View File

@ -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;
}