diff options
Diffstat (limited to 'bfd/elf32-mep.c')
-rw-r--r-- | bfd/elf32-mep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/elf32-mep.c b/bfd/elf32-mep.c index 14a6d22..c5775de 100644 --- a/bfd/elf32-mep.c +++ b/bfd/elf32-mep.c @@ -717,10 +717,10 @@ mep_elf_object_p (bfd * abfd) } static bfd_boolean -mep_elf_section_flags (flagword * flags, const Elf_Internal_Shdr * hdr) +mep_elf_section_flags (const Elf_Internal_Shdr *hdr) { if (hdr->sh_flags & SHF_MEP_VLIW) - * flags |= SEC_MEP_VLIW; + hdr->bfd_section->flags |= SEC_MEP_VLIW; return TRUE; } |