summaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2001-04-15 04:23:46 +0000
committerDJ Delorie <dj@delorie.com>2001-04-15 04:23:46 +0000
commitad7cf0c27906d590e4a11189772b92b86425f27c (patch)
tree4dfc4f852ab8d5bd688b9e9c9c50539279186cc4 /bfd
parent96f37fe3e50a8630c396845e4f167819a729c285 (diff)
downloadbinutils-redhat-ad7cf0c27906d590e4a11189772b92b86425f27c.tar.gz
* coffcode.h (coff_write_object_contents): Use
bfd_coff_swap_filehdr_out instead of coff_swap_filehdr_out.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/coffcode.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 85b0a5978f..0d7dc319f1 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -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.
diff --git a/bfd/coffcode.h b/bfd/coffcode.h
index 34e6fc2d44..2cdc137699 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);