This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Fix error message typo.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=671275c35e71d3bcdde173d8817e34e89b984241

commit 671275c35e71d3bcdde173d8817e34e89b984241
Author: Jim Wilson <jimw@sifive.com>
Date:   Sat Nov 18 17:03:08 2017 -0800

    Fix error message typo.
    
    	bfd/
    	* elfnn-riscv.c (_bfd_riscv_relax_align): Add space between alignment
    	and to in error message.

Diff:
---
 bfd/ChangeLog     | 5 +++++
 bfd/elfnn-riscv.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index d2ad3d3..485371a 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2017-11-18  Jim Wilson  <jimw@sifive.com>
+
+	* elfnn-riscv.c (_bfd_riscv_relax_align): Add space between alignment
+	and to in error message.
+
 2017-11-17  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* elfxx-x86.c (_bfd_x86_elf_link_setup_gnu_properties): Pass
diff --git a/bfd/elfnn-riscv.c b/bfd/elfnn-riscv.c
index b6e3892..e782a60 100644
--- a/bfd/elfnn-riscv.c
+++ b/bfd/elfnn-riscv.c
@@ -3077,7 +3077,7 @@ _bfd_riscv_relax_align (bfd *abfd, asection *sec,
   if (rel->r_addend < nop_bytes)
     {
       (*_bfd_error_handler)
-	(_("%B(%A+0x%lx): %d bytes required for alignment"
+	(_("%B(%A+0x%lx): %d bytes required for alignment "
 	   "to %d-byte boundary, but only %d present"),
 	   abfd, sym_sec, rel->r_offset, nop_bytes, alignment, rel->r_addend);
       bfd_set_error (bfd_error_bad_value);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]