diff options
author | Tom Tromey <tromey@adacore.com> | 2025-01-31 14:17:08 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2025-03-21 09:26:48 -0600 |
commit | a6bc5efb91236fe632b0ca329dc1f0123036262d (patch) | |
tree | e93120e5e5f80d3a9eca2f45777022f00e6a5f22 /gdb/utils.c | |
parent | 45e4b960fd9517db11e4bdcf489ad14f39bdddf4 (diff) | |
download | binutils-a6bc5efb91236fe632b0ca329dc1f0123036262d.zip binutils-a6bc5efb91236fe632b0ca329dc1f0123036262d.tar.gz binutils-a6bc5efb91236fe632b0ca329dc1f0123036262d.tar.bz2 |
Simplify warning_pre_print
This changes warning_pre_print to not include the text "warning",
which is now unconditional. I think this is a bit clearer, and anyway
it is convenient to support the next patch.
Reviewed-By: Keith Seitz <keiths@redhat.com>
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 3d216e1..ee7cf4d 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -119,7 +119,7 @@ show_sevenbit_strings (struct ui_file *file, int from_tty, /* String to be printed before warning messages, if any. */ -const char *warning_pre_print = "\nwarning: "; +const char *warning_pre_print = "\n"; bool pagination_enabled = true; static void @@ -176,8 +176,8 @@ vwarning (const char *string, va_list args) term_state.emplace (); target_terminal::ours_for_output (); } - if (warning_pre_print) - gdb_puts (warning_pre_print, gdb_stderr); + gdb_puts (warning_pre_print, gdb_stderr); + gdb_puts (_("warning: "), gdb_stderr); gdb_vprintf (gdb_stderr, string, args); gdb_printf (gdb_stderr, "\n"); } |