This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
[PATCH] Fix typo in error message
- From: Ed Maste <emaste at freebsd dot org>
- To: binutils at sourceware dot org
- Cc: Ed Maste <emaste at freebsd dot org>
- Date: Wed, 14 Sep 2016 13:43:26 -0400
- Subject: [PATCH] Fix typo in error message
- Authentication-results: sourceware.org; auth=none
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