summaryrefslogtreecommitdiff
path: root/bfd/coffswap.h
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-01-13 23:55:21 +0000
committerNick Clifton <nickc@redhat.com>2000-01-13 23:55:21 +0000
commit4f0b49d0ed98a63526950fd422489e0ee301bd6d (patch)
tree4a4a4c20b827753abac667e220031ef0fa83b331 /bfd/coffswap.h
parentc7a5edbd09afd9331fcf2737bcc72a96414c0779 (diff)
downloadbinutils-redhat-4f0b49d0ed98a63526950fd422489e0ee301bd6d.tar.gz
Applied Tim Wall's patch to replace RELSZ and friends with bfd_coff_relsz and
friends.
Diffstat (limited to 'bfd/coffswap.h')
-rw-r--r--bfd/coffswap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/coffswap.h b/bfd/coffswap.h
index c4a5f66bdd..bb94384409 100644
--- a/bfd/coffswap.h
+++ b/bfd/coffswap.h
@@ -261,7 +261,7 @@ coff_swap_reloc_out (abfd, src, dst)
SWAP_OUT_RELOC_EXTRA(abfd,reloc_src, reloc_dst);
#endif
- return RELSZ;
+ return bfd_coff_relsz (abfd);
}
#endif /* NO_COFF_RELOCS */
@@ -321,7 +321,7 @@ coff_swap_filehdr_out (abfd, in, out)
#ifdef COFF_ADJUST_FILEHDR_OUT_POST
COFF_ADJUST_FILEHDR_OUT_POST (abfd, in, out);
#endif
- return FILHSZ;
+ return bfd_coff_filhsz (abfd);
}
@@ -845,7 +845,7 @@ coff_swap_scnhdr_out (abfd, in, out)
{
struct internal_scnhdr *scnhdr_int = (struct internal_scnhdr *)in;
SCNHDR *scnhdr_ext = (SCNHDR *)out;
- unsigned int ret = SCNHSZ;
+ unsigned int ret = bfd_coff_scnhsz (abfd);
#ifdef COFF_ADJUST_SCNHDR_OUT_PRE
COFF_ADJUST_SCNHDR_OUT_PRE (abfd, in, out);