From: Ian Lance Taylor Date: Tue, 8 Aug 1995 03:05:16 +0000 (+0000) Subject: * som.c (som_bfd_copy_private_symbol_data): Cast initializations X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f918d3ccc778d34cc2c43752893c24427e3f65a2;p=binutils-gdb.git * som.c (som_bfd_copy_private_symbol_data): Cast initializations to avoid warnings. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 49b5ed94e20..177eb66edd1 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +Mon Aug 7 23:03:21 1995 Ian Lance Taylor + + * som.c (som_bfd_copy_private_symbol_data): Cast initializations + to avoid warnings. + Mon Aug 7 14:51:08 1995 Jeff Law (law@snake.cs.utah.edu) * som.c (som_decode_symclass): Handle absolute symbols by checking diff --git a/bfd/som.c b/bfd/som.c index 03b487e0aad..ac71e5cf08e 100644 --- a/bfd/som.c +++ b/bfd/som.c @@ -4680,8 +4680,8 @@ som_bfd_copy_private_symbol_data (ibfd, isymbol, obfd, osymbol) bfd *obfd; asymbol *osymbol; { - struct som_symbol *input_symbol = isymbol; - struct som_symbol *output_symbol = osymbol; + struct som_symbol *input_symbol = (struct som_symbol *) isymbol; + struct som_symbol *output_symbol = (struct som_symbol *) osymbol; /* One day we may try to grok other private data. */ if (ibfd->xvec->flavour != bfd_target_som_flavour