diff options
author | Steve Chamberlain <sac@cygnus> | 1992-06-22 16:07:05 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-06-22 16:07:05 +0000 |
commit | 800aef7c5c9537c931b5c75e7d6d9e5e7c468d0b (patch) | |
tree | fc357d11c175811970196ebf790cabffe0147d71 | |
parent | 3860075f3f22d7add76eee4caa85b051e7913d10 (diff) | |
download | gdb-800aef7c5c9537c931b5c75e7d6d9e5e7c468d0b.zip gdb-800aef7c5c9537c931b5c75e7d6d9e5e7c468d0b.tar.gz gdb-800aef7c5c9537c931b5c75e7d6d9e5e7c468d0b.tar.bz2 |
Lint stuff which didn't make it last time
-rw-r--r-- | bfd/coffcode.h | 4 | ||||
-rw-r--r-- | bfd/targets.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h index b37cdbb..06b1b4e 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -899,8 +899,8 @@ DEFUN(coff_swap_scnhdr_out,(abfd, in, out), */ static boolean -DEFUN(coff_new_section_hook,(abfd_ignore, section), - bfd *abfd_ignore AND +DEFUN(coff_new_section_hook,(abfd, section), + bfd *abfd AND asection *section) { section->alignment_power = abfd->xvec->align_power_min; diff --git a/bfd/targets.c b/bfd/targets.c index 0c41656..2cd84eb 100644 --- a/bfd/targets.c +++ b/bfd/targets.c @@ -335,7 +335,7 @@ Special entry points for gas to swap coff parts . {* See documentation on reloc types. *} . SDEF (CONST struct reloc_howto_struct *, . reloc_type_lookup, -. (bfd *abfd, bfd_reloc_code_type code)); +. (bfd *abfd, bfd_reloc_code_real_type code)); . . {* Complete and utter crock, currently used for the assembler . when creating COFF files. *} |