This is the mail archive of the binutils@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]

[PATCH] Fix typo in error message


binutils/ChangeLog:

2016-09-14  Ed Maste  <emaste@freebsd.org>

    * readelf.c (process_mips_specific): Fix typo in error message.
---
 binutils/ChangeLog | 4 ++++
 binutils/readelf.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 4b3a746..3cb2a77 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2016-09-14  Ed Maste  <emaste@freebsd.org>
+
+	* readelf.c (process_mips_specific): Fix typo in error message.
+
 2016-09-06  Nick Clifton  <nickc@redhat.com>
 
 	* readelf.c (request_dump_bynumber): Only call memcpy if
diff --git a/binutils/readelf.c b/binutils/readelf.c
index c9bce2e..899afdb 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -14721,7 +14721,7 @@ process_mips_specific (FILE * file)
               cmalloc ((sect->sh_size / sizeof (eopt)), sizeof (* iopt));
 	  if (iopt == NULL)
 	    {
-	      error (_("Out of memory allocatinf space for MIPS options\n"));
+	      error (_("Out of memory allocating space for MIPS options\n"));
 	      return 0;
 	    }
 
-- 
2.8.1


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