diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-07-01 08:23:13 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-07-01 08:23:13 +0000 |
commit | bc823199d1bfb3dd8763f2f33b0583895509cec4 (patch) | |
tree | 133a7030641feac5fa1681fc55c2b1ad438e60b1 /bfd/elf.c | |
parent | 42e7ad6c737c369c328adb41a707222523b7e4c2 (diff) | |
download | gdb-bc823199d1bfb3dd8763f2f33b0583895509cec4.zip gdb-bc823199d1bfb3dd8763f2f33b0583895509cec4.tar.gz gdb-bc823199d1bfb3dd8763f2f33b0583895509cec4.tar.bz2 |
* elf.c (_bfd_elf_make_section_from_shdr): Fix typo in error
message.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1038,7 +1038,7 @@ _bfd_elf_make_section_from_shdr (bfd *abfd, if (!bfd_init_section_compress_status (abfd, newsect)) { (*_bfd_error_handler) - (_("%B: unable to initialize commpress status for section %s"), + (_("%B: unable to initialize compress status for section %s"), abfd, name); return FALSE; } @@ -1058,7 +1058,7 @@ _bfd_elf_make_section_from_shdr (bfd *abfd, if (!bfd_init_section_decompress_status (abfd, newsect)) { (*_bfd_error_handler) - (_("%B: unable to initialize decommpress status for section %s"), + (_("%B: unable to initialize decompress status for section %s"), abfd, name); return FALSE; } |