diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-14 14:37:38 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-14 14:37:38 +0000 |
commit | 66bf4b3a03e67c9c38fb7525c6ce25c4f870206a (patch) | |
tree | 9de77d59e9da5809b17deadcd753de54454d3100 /gdb/infcmd.c | |
parent | 8adce22da6e4805b565e6519d112e93f2a09814c (diff) | |
download | gdb-66bf4b3a03e67c9c38fb7525c6ce25c4f870206a.zip gdb-66bf4b3a03e67c9c38fb7525c6ce25c4f870206a.tar.gz 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/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 1fad818..ac7d3c5 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -889,7 +889,7 @@ jump_command (char *arg, int from_tty) if (from_tty) { printf_filtered (_("Continuing at ")); - print_address_numeric (addr, 1, gdb_stdout); + deprecated_print_address_numeric (addr, 1, gdb_stdout); printf_filtered (".\n"); } |