diff options
author | John Gilmore <gnu@cygnus> | 1991-05-04 05:22:47 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-05-04 05:22:47 +0000 |
commit | 1417a2cd1cc1ba983206f37423083fc34525424d (patch) | |
tree | 559be78b69f4519949dbe0a3d113ff421dcea7a6 /binutils | |
parent | 77ac93922c95502680f05f799f78e1426a766141 (diff) | |
download | gdb-1417a2cd1cc1ba983206f37423083fc34525424d.zip gdb-1417a2cd1cc1ba983206f37423083fc34525424d.tar.gz gdb-1417a2cd1cc1ba983206f37423083fc34525424d.tar.bz2 |
Fix =&'s in copy.c
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/copy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/copy.c b/binutils/copy.c index ff2dc09..d9039ae 100644 --- a/binutils/copy.c +++ b/binutils/copy.c @@ -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; |