diff options
Diffstat (limited to 'bfd/vms-lib.c')
-rw-r--r-- | bfd/vms-lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/vms-lib.c b/bfd/vms-lib.c index 13a4fa8..c9a9fc6 100644 --- a/bfd/vms-lib.c +++ b/bfd/vms-lib.c @@ -833,7 +833,7 @@ vms_lib_read_block (struct bfd *abfd) function does not handle records nor EOF. */ static file_ptr -vms_lib_bread_raw (struct bfd *abfd, void *buf, file_ptr nbytes) +vms_lib_bread_raw (struct bfd *abfd, unsigned char *buf, file_ptr nbytes) { struct vms_lib_iovec *vec = (struct vms_lib_iovec *) abfd->iostream; file_ptr res; @@ -969,7 +969,7 @@ vms_lib_bread (struct bfd *abfd, void *buf, file_ptr nbytes) unsigned char blen[2]; /* Read record length. */ - if (vms_lib_bread_raw (abfd, &blen, sizeof (blen)) != sizeof (blen)) + if (vms_lib_bread_raw (abfd, blen, sizeof (blen)) != sizeof (blen)) return -1; vec->rec_len = bfd_getl16 (blen); if (bfd_libdata (abfd->my_archive)->kind == vms_lib_txt) @@ -1215,7 +1215,7 @@ static bfd_boolean vms_lib_bopen (bfd *el, file_ptr filepos) { struct vms_lib_iovec *vec; - char buf[256]; + unsigned char buf[256]; struct vms_mhd *mhd; struct lib_tdata *tdata = bfd_libdata (el->my_archive); unsigned int len; |