diff options
Diffstat (limited to 'bfd/elfxx-mips.c')
-rw-r--r-- | bfd/elfxx-mips.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c index 1e9851c..92dd4c2 100644 --- a/bfd/elfxx-mips.c +++ b/bfd/elfxx-mips.c @@ -7355,7 +7355,7 @@ _bfd_mips_elf_section_processing (bfd *abfd, Elf_Internal_Shdr *hdr) SEEK_SET) != 0) return false; H_PUT_32 (abfd, elf_gp (abfd), buf); - if (bfd_bwrite (buf, 4, abfd) != 4) + if (bfd_write (buf, 4, abfd) != 4) return false; } @@ -7403,7 +7403,7 @@ _bfd_mips_elf_section_processing (bfd *abfd, Elf_Internal_Shdr *hdr) SEEK_SET) != 0) return false; H_PUT_64 (abfd, elf_gp (abfd), buf); - if (bfd_bwrite (buf, 8, abfd) != 8) + if (bfd_write (buf, 8, abfd) != 8) return false; } else if (intopt.kind == ODK_REGINFO) @@ -7418,7 +7418,7 @@ _bfd_mips_elf_section_processing (bfd *abfd, Elf_Internal_Shdr *hdr) SEEK_SET) != 0) return false; H_PUT_32 (abfd, elf_gp (abfd), buf); - if (bfd_bwrite (buf, 4, abfd) != 4) + if (bfd_write (buf, 4, abfd) != 4) return false; } l += intopt.size; |