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/readelf.c | |
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/readelf.c')
-rw-r--r-- | binutils/readelf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |