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 grammar in error message.


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

commit f231881ea65232b3f67379326a5b605c465dffc4
Author: Douglas B Rupp <rupp@adacore.com>
Date:   Tue Jul 12 11:05:13 2016 +0100

    Fix grammar in error message.
    
    	* binary.c (binary_set_section_contents): Fix grammar in warning
    	message.

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

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 562d963..38a645a 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2016-07-12  Douglas B Rupp  <rupp@adacore.com>
+
+	* binary.c (binary_set_section_contents): Fix grammar in warning
+	message.
+
 2016-07-11  Cupertino Miranda  <cmiranda@synopsys.com>
 
 	* elf32-arc.c: made PR_DEBUG always defined.
diff --git a/bfd/binary.c b/bfd/binary.c
index 2223b5d..6cec8e8 100644
--- a/bfd/binary.c
+++ b/bfd/binary.c
@@ -270,7 +270,7 @@ binary_set_section_contents (bfd *abfd,
 
 	  if (s->filepos < 0)
 	    (*_bfd_error_handler)
-	      (_("Warning: Writing section `%s' to huge (ie negative) file offset 0x%lx."),
+	      (_("Warning: Writing section `%s' too huge (ie negative) file offset 0x%lx."),
 	       bfd_get_section_name (abfd, s),
 	       (unsigned long) s->filepos);
 	}


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