diff options
author | Tom Tromey <tom@tromey.com> | 2021-12-29 11:05:51 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-12-29 11:08:14 -0700 |
commit | 3de0d96078193276795b9bdf72a25b77b60d8337 (patch) | |
tree | 6c730b8fdddc60a05cae34a7404a29c9e2c7454f /gdb/arch-utils.c | |
parent | 7514a661283b9725ceeb4385be67b6b5d7702b2c (diff) | |
download | gdb-3de0d96078193276795b9bdf72a25b77b60d8337.zip gdb-3de0d96078193276795b9bdf72a25b77b60d8337.tar.gz gdb-3de0d96078193276795b9bdf72a25b77b60d8337.tar.bz2 |
Use filtered output in show callbacks
"show" command callbacks, like most ordinary gdb commands, should use
filtered output. I found a few that did not, so this patch changes
them to use the filtered form.
Diffstat (limited to 'gdb/arch-utils.c')
-rw-r--r-- | gdb/arch-utils.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/arch-utils.c b/gdb/arch-utils.c index fb92b99..63c3c6c 100644 --- a/gdb/arch-utils.c +++ b/gdb/arch-utils.c @@ -375,18 +375,18 @@ show_endian (struct ui_file *file, int from_tty, struct cmd_list_element *c, { if (target_byte_order_user == BFD_ENDIAN_UNKNOWN) if (gdbarch_byte_order (get_current_arch ()) == BFD_ENDIAN_BIG) - fprintf_unfiltered (file, _("The target endianness is set automatically " - "(currently big endian).\n")); + fprintf_filtered (file, _("The target endianness is set automatically " + "(currently big endian).\n")); else - fprintf_unfiltered (file, _("The target endianness is set automatically " - "(currently little endian).\n")); + fprintf_filtered (file, _("The target endianness is set automatically " + "(currently little endian).\n")); else if (target_byte_order_user == BFD_ENDIAN_BIG) - fprintf_unfiltered (file, - _("The target is set to big endian.\n")); + fprintf_filtered (file, + _("The target is set to big endian.\n")); else - fprintf_unfiltered (file, - _("The target is set to little endian.\n")); + fprintf_filtered (file, + _("The target is set to little endian.\n")); } static void |