]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* coffcode.h (coff_write_object_contents): Use
authorDJ Delorie <dj@redhat.com>
Sun, 15 Apr 2001 04:23:46 +0000 (04:23 +0000)
committerDJ Delorie <dj@redhat.com>
Sun, 15 Apr 2001 04:23:46 +0000 (04:23 +0000)
bfd_coff_swap_filehdr_out instead of coff_swap_filehdr_out.

bfd/ChangeLog
bfd/coffcode.h

index 85b0a5978fe4f693d198b74d780ac6b9ea561a45..0d7dc319f1afa312ad9153e3e70d47ebac347232 100644 (file)
@@ -1,3 +1,8 @@
+2001-04-14  Mark Elbrecht  <snowball3@bigfoot.com>
+
+       * coffcode.h (coff_write_object_contents): Use
+       bfd_coff_swap_filehdr_out instead of coff_swap_filehdr_out.
+
 2001-04-14  H.J. Lu  <hjl@gnu.org>
 
        * bfd-in2.h: Regenerate.
index 34e6fc2d44c2561a5e6380c912c52bd91c14e48b..2cdc137699e7ff542bf8d53b8b38124311e31787 100644 (file)
@@ -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);