Fix =&'s in copy.c
This commit is contained in:
parent
77ac93922c
commit
1417a2cd1c
1 changed files with 2 additions and 2 deletions
|
@ -144,7 +144,7 @@ copy_archive(ibfd, obfd)
|
|||
bfd *ibfd;
|
||||
bfd *obfd;
|
||||
{
|
||||
bfd **ptr =&( obfd->archive_head);
|
||||
bfd **ptr = &obfd->archive_head;
|
||||
bfd *this_element;
|
||||
/* Read each archive element in turn from the input, copy the
|
||||
contents to a temp file, and keep the temp file handle */
|
||||
|
@ -178,7 +178,7 @@ bfd *obfd;
|
|||
|
||||
*ptr = output_bfd;
|
||||
|
||||
ptr =&( output_bfd->next);
|
||||
ptr = &output_bfd->next;
|
||||
this_element->next = bfd_openr_next_archived_file(ibfd, this_element);
|
||||
this_element = this_element->next;
|
||||
|
||||
|
|
Loading…
Reference in a new issue