summaryrefslogtreecommitdiff
path: root/gdb/record.c
diff options
context:
space:
mode:
authorPierre Muller <muller@ics.u-strasbg.fr>2011-03-16 17:58:59 +0000
committerPierre Muller <muller@ics.u-strasbg.fr>2011-03-16 17:58:59 +0000
commitabf66c159a422b39b4e43b5bd76539ee6e3707a4 (patch)
tree11be0832e55333e4997ab7d7584809ce8530fea3 /gdb/record.c
parent395670463fc6d90052fe345c4c09297192f71de2 (diff)
downloadgdb-abf66c159a422b39b4e43b5bd76539ee6e3707a4.tar.gz
Fix ARI warnings about new lines at the end of messages, which
are unneeded as there is a new line added at the end of the message automatically. * darwin-nat.c (darwin_stop_inferior): Ditto. * dec-thread.c (dec_thread_get_ada_task_ptid): Ditto. * dfp.c (decimal_to_number): Ditto. * exec.c (print_section_info): Ditto. * i386-darwin-nat.c (darwin_set_sstep): Ditto. * osdata.c (get_osdata): Ditto. * record.c (bfdcore_write): Ditto. * remote-mips.c (mips_readchar): Ditto. * remote.c (read_ptid): Ditto. * ser-mingw.c (ser_windows_raw): Ditto. * tracepoint.c (add_local_symbols): Ditto. * windows-nat.c (fake_create_process): Ditto.
Diffstat (limited to 'gdb/record.c')
-rw-r--r--gdb/record.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/record.c b/gdb/record.c
index aa5e9a7f88c..7cc26da3042 100644
--- a/gdb/record.c
+++ b/gdb/record.c
@@ -2373,7 +2373,7 @@ bfdcore_write (bfd *obfd, asection *osec, void *buf, int len, int *offset)
if (ret)
*offset += len;
else
- error (_("Failed to write %d bytes to core file %s ('%s').\n"),
+ error (_("Failed to write %d bytes to core file %s ('%s')."),
len, bfd_get_filename (obfd),
bfd_errmsg (bfd_get_error ()));
}