* opncls.c (opncls_bread, opncls_bclose): Fix if pread resp.

close is a function like macro in system headers.
This commit is contained in:
Jakub Jelinek 2005-03-07 10:32:38 +00:00
parent b18e2ae59e
commit 0709bb2246
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-03-07 Jakub Jelinek <jakub@redhat.com>
* opncls.c (opncls_bread, opncls_bclose): Fix if pread resp.
close is a function like macro in system headers.
2005-03-07 Alan Modra <amodra@bigpond.net.au>
PR ld/778

View File

@ -405,7 +405,7 @@ static file_ptr
opncls_bread (struct bfd *abfd, void *buf, file_ptr nbytes)
{
struct opncls *vec = abfd->iostream;
file_ptr nread = vec->pread (abfd, vec->stream, buf, nbytes, vec->where);
file_ptr nread = (vec->pread) (abfd, vec->stream, buf, nbytes, vec->where);
if (nread < 0)
return nread;
vec->where += nread;
@ -428,7 +428,7 @@ opncls_bclose (struct bfd *abfd)
free it. */
int status = 0;
if (vec->close != NULL)
status = vec->close (abfd, vec->stream);
status = (vec->close) (abfd, vec->stream);
abfd->iostream = NULL;
return status;
}