* coff-msym.c (ecoff_swap_rfd_in): remove & for array ref.

This commit is contained in:
Stu Grossman 1992-03-24 06:39:01 +00:00
parent b3024b21ac
commit 2b7eef3c57
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Mar 23 22:37:34 1992 Stu Grossman (grossman at cygnus.com)
* coff-msym.c (ecoff_swap_rfd_in): remove & for array ref.
Tue Mar 17 14:12:25 1992 Per Bothner (bothner@rtl.cygnus.com)
* bout.c (b_out_slurp_reloc_table): Use BFD_ASSERT macro,

View File

@ -366,7 +366,7 @@ ecoff_swap_rfd_in (abfd, ext, intern)
RFDT *intern;
{
*intern = bfd_h_get_32 (abfd, (bfd_byte *)&ext->rfd);
*intern = bfd_h_get_32 (abfd, (bfd_byte *)ext->rfd);
#ifdef TEST
if (memcmp ((char *)ext, (char *)intern, sizeof (*intern)) != 0)