aboutsummaryrefslogtreecommitdiff
path: root/gdb/ui-out.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-02-14 14:37:38 +0000
committerAndrew Cagney <cagney@redhat.com>2005-02-14 14:37:38 +0000
commit66bf4b3a03e67c9c38fb7525c6ce25c4f870206a (patch)
tree9de77d59e9da5809b17deadcd753de54454d3100 /gdb/ui-out.c
parent8adce22da6e4805b565e6519d112e93f2a09814c (diff)
downloadfsf-binutils-gdb-66bf4b3a03e67c9c38fb7525c6ce25c4f870206a.zip
fsf-binutils-gdb-66bf4b3a03e67c9c38fb7525c6ce25c4f870206a.tar.gz
fsf-binutils-gdb-66bf4b3a03e67c9c38fb7525c6ce25c4f870206a.tar.bz2
2005-02-14 Andrew Cagney <cagney@gnu.org>
* utils.c (paddress): New function. * defs.h (paddress): Declare. * printcmd.c (deprecated_print_address_numeric): Rename print_address_numeric, call paddress. * valprint.c, ui-out.c, tui/tui-stack.c, tracepoint.c: Update. * symmisc.c, symfile.c stack.c, p-valprint.c, printcmd.c: Update. * maint.c, m32r-rom.c, infcmd.c, f-valprint.c, exec.c: Update. * dwarf2read.c, dve3900-rom.c, defs.h, c-valprint.c: Update. * corefile.c, cli/cli-cmds.c, breakpoint.c, annotate.c: Update. * ada-valprint.c: Update.
Diffstat (limited to 'gdb/ui-out.c')
-rw-r--r--gdb/ui-out.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ui-out.c b/gdb/ui-out.c
index 53abebf..f59eecc 100644
--- a/gdb/ui-out.c
+++ b/gdb/ui-out.c
@@ -494,7 +494,7 @@ ui_out_field_core_addr (struct ui_out *uiout,
/* FIXME: cagney/2002-05-03: Need local_address_string() function
that returns the language localized string formatted to a width
based on TARGET_ADDR_BIT. */
- /* print_address_numeric (address, 1, local_stream); */
+ /* deprecated_print_address_numeric (address, 1, local_stream); */
if (TARGET_ADDR_BIT <= 32)
strcpy (addstr, hex_string_custom (address, 8));
else