aboutsummaryrefslogtreecommitdiff
path: root/gdb/symfile.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2019-07-01 12:02:37 -0600
committerTom Tromey <tromey@adacore.com>2019-07-15 09:28:59 -0600
commitca8d69beb1024316af8dec571584437d613f40d2 (patch)
tree489c8f821a6055053b61c6c21e122b013c0b6f30 /gdb/symfile.c
parent3719fd55b6f89662653d50d33bb267c5f21127a5 (diff)
downloadgdb-ca8d69beb1024316af8dec571584437d613f40d2.zip
gdb-ca8d69beb1024316af8dec571584437d613f40d2.tar.gz
gdb-ca8d69beb1024316af8dec571584437d613f40d2.tar.bz2
Use field_core_addr in more places
This changes a few spots that use field_fmt to use field_core_addr instead. gdb/ChangeLog 2019-07-15 Tom Tromey <tromey@adacore.com> * target.c (flash_erase_command): Use field_core_addr. * symfile.c (generic_load): Use field_core_addr. * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault): Use field_core_addr. * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use field_core_addr.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r--gdb/symfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c
index 13a07e4..caa0e79 100644
--- a/gdb/symfile.c
+++ b/gdb/symfile.c
@@ -2095,7 +2095,7 @@ generic_load (const char *args, int from_tty)
CORE_ADDR entry = bfd_get_start_address (loadfile_bfd.get ());
entry = gdbarch_addr_bits_remove (target_gdbarch (), entry);
uiout->text ("Start address ");
- uiout->field_fmt ("address", "%s", paddress (target_gdbarch (), entry));
+ uiout->field_core_addr ("address", target_gdbarch (), entry);
uiout->text (", load size ");
uiout->field_fmt ("load-size", "%lu", total_progress.data_count);
uiout->text ("\n");