X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=bfd%2Felf32-gen.c;h=79aa631c1b94205a777e966192c50dda759962e0;hb=1e92785005ce880a5fac9d022f05cdcff91c3091;hp=2fddfcc712638654ed47baf75b8815429c404376;hpb=6f2750feaf2827ef8a1a0a5b2f90c1e9a6cabbd1;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/elf32-gen.c b/bfd/elf32-gen.c index 2fddfcc712..79aa631c1b 100644 --- a/bfd/elf32-gen.c +++ b/bfd/elf32-gen.c @@ -1,5 +1,5 @@ /* Generic support for 32-bit ELF - Copyright (C) 1993-2016 Free Software Foundation, Inc. + Copyright (C) 1993-2020 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -41,20 +41,22 @@ static reloc_howto_type dummy = 0, /* dst_mask */ FALSE); /* pcrel_offset */ -static void +static bfd_boolean elf_generic_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *bfd_reloc, Elf_Internal_Rela *elf_reloc ATTRIBUTE_UNUSED) { bfd_reloc->howto = &dummy; + return TRUE; } -static void +static bfd_boolean elf_generic_info_to_howto_rel (bfd *abfd ATTRIBUTE_UNUSED, arelent *bfd_reloc, Elf_Internal_Rela *elf_reloc ATTRIBUTE_UNUSED) { bfd_reloc->howto = &dummy; + return TRUE; } static void @@ -65,7 +67,8 @@ check_for_relocs (bfd * abfd, asection * o, void * failed) Elf_Internal_Ehdr *ehdrp; ehdrp = elf_elfheader (abfd); - _bfd_error_handler (_("%B: Relocations in generic ELF (EM: %d)"), + /* xgettext:c-format */ + _bfd_error_handler (_("%pB: relocations in generic ELF (EM: %d)"), abfd, ehdrp->e_machine); bfd_set_error (bfd_error_wrong_format);