aboutsummaryrefslogtreecommitdiff
path: root/gdb/annotate.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/annotate.c')
-rw-r--r--gdb/annotate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/annotate.c b/gdb/annotate.c
index 7dce742..205fe89 100644
--- a/gdb/annotate.c
+++ b/gdb/annotate.c
@@ -423,7 +423,7 @@ annotate_source (char *filename, int line, int character, int mid, CORE_ADDR pc)
printf_filtered (("%s:%d:%d:%s:0x"), filename,
line, character,
mid ? "middle" : "beg");
- print_address_numeric (pc, 0, gdb_stdout);
+ deprecated_print_address_numeric (pc, 0, gdb_stdout);
printf_filtered (("\n"));
}
@@ -433,7 +433,7 @@ annotate_frame_begin (int level, CORE_ADDR pc)
if (annotation_level == 2)
{
printf_filtered (("\n\032\032frame-begin %d 0x"), level);
- print_address_numeric (pc, 0, gdb_stdout);
+ deprecated_print_address_numeric (pc, 0, gdb_stdout);
printf_filtered (("\n"));
}
}