Chnage type from 'unsigned char' to 'unsigned int' to avoid K&R compatability issue.

This commit is contained in:
Nick Clifton 1998-07-22 20:58:50 +00:00
parent 842dbd0d61
commit c13661938a
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,12 @@
Wed Jul 22 13:53:52 1998 Nick Clifton <nickc@cygnus.com>
* bfd-in2.h: Change type of 'class' parameter to 'unsigned int' in
bfd_coff_set_symbol_class(), in order to avoid K&R compatability
prblems.
* bfd-in.h: Regenerate.
* coffgen.c (bfd_coff_set_symbol_class): Change type of 'class'
parameter to 'unsigned int' to avoid K&R compatability problems.
Wed Jul 22 16:43:24 1998 Ian Lance Taylor <ian@cygnus.com>
* ieee.c (ieee_find_nearest_line): Change filename_ptr and

View File

@ -696,7 +696,7 @@ extern boolean bfd_coff_get_auxent
PARAMS ((bfd *, struct symbol_cache_entry *, int, union internal_auxent *));
extern boolean bfd_coff_set_symbol_class
PARAMS ((bfd *, struct symbol_cache_entry *, unsigned char));
PARAMS ((bfd *, struct symbol_cache_entry *, unsigned int));
/* ARM Interworking support. Called from linker. */
extern boolean bfd_arm_allocate_interworking_sections
@ -2701,6 +2701,7 @@ enum bfd_flavour {
bfd_target_os9k_flavour,
bfd_target_versados_flavour,
bfd_target_msdos_flavour,
bfd_target_ovax_flavour,
bfd_target_evax_flavour
};