From: DJ Delorie Date: Sun, 15 Apr 2001 04:23:46 +0000 (+0000) Subject: * coffcode.h (coff_write_object_contents): Use X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3ed30d29c615edca09467def7656d3e87cd722b7;p=binutils-gdb.git * coffcode.h (coff_write_object_contents): Use bfd_coff_swap_filehdr_out instead of coff_swap_filehdr_out. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 85b0a5978fe..0d7dc319f1a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2001-04-14 Mark Elbrecht + + * coffcode.h (coff_write_object_contents): Use + bfd_coff_swap_filehdr_out instead of coff_swap_filehdr_out. + 2001-04-14 H.J. Lu * bfd-in2.h: Regenerate. diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 34e6fc2d44c..2cdc137699e 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -4022,7 +4022,7 @@ coff_write_object_contents (abfd) if (buff == NULL) return false; - coff_swap_filehdr_out (abfd, (PTR) & internal_f, (PTR) buff); + bfd_coff_swap_filehdr_out (abfd, (PTR) & internal_f, (PTR) buff); amount = bfd_write ((PTR) buff, 1, bfd_coff_filhsz (abfd), abfd); free (buff);