diff options
Diffstat (limited to 'gdb/utils.c')
-rw-r--r-- | gdb/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/utils.c b/gdb/utils.c index bf6f4fb..bc0cdd0 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -1913,14 +1913,14 @@ print_spaces (int n, struct ui_file *stream) /* C++/ObjC demangler stuff. */ -/* fprintf_symbol_filtered attempts to demangle NAME, a symbol in language +/* fprintf_symbol attempts to demangle NAME, a symbol in language LANG, using demangling args ARG_MODE, and print it filtered to STREAM. If the name is not mangled, or the language for the name is unknown, or demangling is off, the name is printed in its "raw" form. */ void -fprintf_symbol_filtered (struct ui_file *stream, const char *name, - enum language lang, int arg_mode) +fprintf_symbol (struct ui_file *stream, const char *name, + enum language lang, int arg_mode) { if (name != NULL) { |