Fix =&'s in copy.c
authorJohn Gilmore <gnu@cygnus>
Sat, 4 May 1991 05:22:47 +0000 (05:22 +0000)
committerJohn Gilmore <gnu@cygnus>
Sat, 4 May 1991 05:22:47 +0000 (05:22 +0000)
binutils/copy.c

index ff2dc0911210933b82c1e9c58a8125b7717fc306..d9039ae38ed0e6e242ae24e22892d82795b1e10f 100644 (file)
@@ -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;