aboutsummaryrefslogtreecommitdiff
path: root/gdb/utils.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-01-02 11:55:39 -0700
committerTom Tromey <tom@tromey.com>2022-03-29 12:46:25 -0600
commitbed009b9d8601de825ac848c543ee9853628940d (patch)
treecd568f167395a54122b29169a32061538fec982c /gdb/utils.h
parent9fbf7f083e21263b0a0e1f76d615adaa4e13cfe5 (diff)
downloadgdb-bed009b9d8601de825ac848c543ee9853628940d.zip
gdb-bed009b9d8601de825ac848c543ee9853628940d.tar.gz
gdb-bed009b9d8601de825ac848c543ee9853628940d.tar.bz2
Rename fprintf_symbol_filtered
fprintf_symbol_filtered is misnamed, because whether filtering happens is now up to the stream. This renames it to fprintf_symbol, which isn't a great name (the first "f" doesn't mean much and the second one is truly meaningless here), but "print_symbol" was already taken.
Diffstat (limited to 'gdb/utils.h')
-rw-r--r--gdb/utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/utils.h b/gdb/utils.h
index 8b7eccb..71a0349 100644
--- a/gdb/utils.h
+++ b/gdb/utils.h
@@ -305,8 +305,8 @@ extern const char *print_core_address (struct gdbarch *gdbarch,
extern CORE_ADDR string_to_core_addr (const char *my_string);
-extern void fprintf_symbol_filtered (struct ui_file *, const char *,
- enum language, int);
+extern void fprintf_symbol (struct ui_file *, const char *,
+ enum language, int);
extern void throw_perror_with_name (enum errors errcode, const char *string)
ATTRIBUTE_NORETURN;