diff options
author | Ed Maste <emaste@freebsd.org> | 2016-09-15 10:42:08 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-09-15 10:42:08 +0100 |
commit | fb324ee93a26dcf0560a911074c97dcfb9b3eeb4 (patch) | |
tree | 36790cab54a0f029fa31fd38cec99ce27399af3d /binutils | |
parent | fd486b633e87f8ab2977592d56a6d98168814e2e (diff) | |
download | gdb-fb324ee93a26dcf0560a911074c97dcfb9b3eeb4.zip gdb-fb324ee93a26dcf0560a911074c97dcfb9b3eeb4.tar.gz gdb-fb324ee93a26dcf0560a911074c97dcfb9b3eeb4.tar.bz2 |
Fix typo in readelf error message.
* readelf.c (process_mips_specific): Fix typo in error message.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 5 insertions, 1 deletions
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; } |