diff options
Diffstat (limited to 'gdb/addrmap.c')
-rw-r--r-- | gdb/addrmap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/addrmap.c b/gdb/addrmap.c index bf30faa..f888806 100644 --- a/gdb/addrmap.c +++ b/gdb/addrmap.c @@ -612,10 +612,10 @@ addrmap_dump (struct addrmap *map, struct ui_file *outfile, void *payload) addr_str = "<ends here>"; if (matches || previous_matched) - fprintf_filtered (outfile, " %s%s %s\n", - payload != nullptr ? " " : "", - core_addr_to_string (start_addr), - addr_str); + gdb_printf (outfile, " %s%s %s\n", + payload != nullptr ? " " : "", + core_addr_to_string (start_addr), + addr_str); previous_matched = matches; |