diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-08-08 03:05:16 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-08-08 03:05:16 +0000 |
commit | f918d3ccc778d34cc2c43752893c24427e3f65a2 (patch) | |
tree | 2636fd51a87e033250d662981b1d52c4d6e55994 /bfd | |
parent | 4fedeeb08cdf1853d90cb0f399966eafc94ccbe8 (diff) | |
download | gdb-f918d3ccc778d34cc2c43752893c24427e3f65a2.zip gdb-f918d3ccc778d34cc2c43752893c24427e3f65a2.tar.gz gdb-f918d3ccc778d34cc2c43752893c24427e3f65a2.tar.bz2 |
* som.c (som_bfd_copy_private_symbol_data): Cast initializations
to avoid warnings.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/som.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 49b5ed9..177eb66 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -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) * 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; 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 |