diff options
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/elflink.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d0eb8ee..e2c49e8 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,9 @@ 2004-07-22 H.J. Lu <hongjiu.lu@intel.com> + * elflink.c (elf_fixup_link_order): Add _() to error message. + +2004-07-22 H.J. Lu <hongjiu.lu@intel.com> + * elflink.c (elf_fixup_link_order): Issue a warning and flag an error if failed. diff --git a/bfd/elflink.c b/bfd/elflink.c index e3f5e4a..2e958cf 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -7253,7 +7253,7 @@ elf_fixup_link_order (bfd *abfd, asection *o) if (seen_other && seen_linkorder) { - (*_bfd_error_handler) ("%s: has both ordered and unordered sections", + (*_bfd_error_handler) (_("%s: has both ordered and unordered sections"), o->name); bfd_set_error (bfd_error_bad_value); return FALSE; |