summaryrefslogtreecommitdiff
path: root/bfd/vms-lib.c
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2010-08-03 08:48:59 +0000
committerTristan Gingold <gingold@adacore.com>2010-08-03 08:48:59 +0000
commit6c973d4100cfe7ca21605fa1672664f0014e8c05 (patch)
tree83d4372d369a336a3cf4b87d90ca69577265e90b /bfd/vms-lib.c
parent05b2a45595000bb798c1980da85791d97fd71d3a (diff)
downloadbinutils-redhat-6c973d4100cfe7ca21605fa1672664f0014e8c05.tar.gz
2010-08-03 Tristan Gingold <gingold@adacore.com>
* vms-lib.c (vms_lib_bread_raw): Change type of BUF argument. (vms_lib_bread, vms_lib_bopen): Adjust.
Diffstat (limited to 'bfd/vms-lib.c')
-rw-r--r--bfd/vms-lib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/vms-lib.c b/bfd/vms-lib.c
index 13a4fa892b..c9a9fc695d 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;