diff options
author | Jan Beulich <jbeulich@suse.com> | 2023-02-16 09:56:50 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2023-02-16 09:56:50 +0100 |
commit | c84b3d7eaa3aec024ff2482e3a1fea0e89d01839 (patch) | |
tree | 41488a37363a1470178419021ea3c7cea2b7ec95 /gas | |
parent | 42af03dafee14cf7b3f4e324ceca1b0ababd1eb9 (diff) | |
download | gdb-c84b3d7eaa3aec024ff2482e3a1fea0e89d01839.zip gdb-c84b3d7eaa3aec024ff2482e3a1fea0e89d01839.tar.gz gdb-c84b3d7eaa3aec024ff2482e3a1fea0e89d01839.tar.bz2 |
RISC-V: as_warn() already emits a newline
Therefore there shouldn't be any at the end of the format string.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-riscv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c index 08b806d..40550ba 100644 --- a/gas/config/tc-riscv.c +++ b/gas/config/tc-riscv.c @@ -4179,7 +4179,7 @@ s_riscv_option (int x ATTRIBUTE_UNUSED) } else { - as_warn (_("unrecognized .option directive: %s\n"), name); + as_warn (_("unrecognized .option directive: %s"), name); } *input_line_pointer = ch; demand_empty_rest_of_line (); |