diff options
Diffstat (limited to 'bfd/elf32-arm.c')
-rw-r--r-- | bfd/elf32-arm.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c index 9bc7eef..a1370e2 100644 --- a/bfd/elf32-arm.c +++ b/bfd/elf32-arm.c @@ -4175,9 +4175,12 @@ elf32_arm_relocate_section (bfd * output_bfd, && h->def_dynamic)) { (*_bfd_error_handler) - (_("%B(%A+0x%lx): warning: unresolvable relocation %d against symbol `%s'"), - input_bfd, input_section, (long) rel->r_offset, - r_type, h->root.root.string); + (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"), + input_bfd, + input_section, + (long) rel->r_offset, + howto->name, + h->root.root.string); return FALSE; } |