From 4f0b49d0ed98a63526950fd422489e0ee301bd6d Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 13 Jan 2000 23:55:21 +0000 Subject: Applied Tim Wall's patch to replace RELSZ and friends with bfd_coff_relsz and friends. --- bfd/coffswap.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bfd/coffswap.h') 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); -- cgit v1.2.1