* som.c (som_bfd_copy_private_symbol_data): Cast initializations
to avoid warnings.
This commit is contained in:
parent
4fedeeb08c
commit
f918d3ccc7
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Aug 7 23:03:21 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* 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)
|
Mon Aug 7 14:51:08 1995 Jeff Law (law@snake.cs.utah.edu)
|
||||||
|
|
||||||
* som.c (som_decode_symclass): Handle absolute symbols by checking
|
* som.c (som_decode_symclass): Handle absolute symbols by checking
|
||||||
|
|
|
@ -4680,8 +4680,8 @@ som_bfd_copy_private_symbol_data (ibfd, isymbol, obfd, osymbol)
|
||||||
bfd *obfd;
|
bfd *obfd;
|
||||||
asymbol *osymbol;
|
asymbol *osymbol;
|
||||||
{
|
{
|
||||||
struct som_symbol *input_symbol = isymbol;
|
struct som_symbol *input_symbol = (struct som_symbol *) isymbol;
|
||||||
struct som_symbol *output_symbol = osymbol;
|
struct som_symbol *output_symbol = (struct som_symbol *) osymbol;
|
||||||
|
|
||||||
/* One day we may try to grok other private data. */
|
/* One day we may try to grok other private data. */
|
||||||
if (ibfd->xvec->flavour != bfd_target_som_flavour
|
if (ibfd->xvec->flavour != bfd_target_som_flavour
|
||||||
|
|
Loading…
Reference in a new issue