From 5f5a34e1846c2139be4dc9da8e712cf91778ac94 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Mon, 23 Sep 1996 19:58:21 +0000 Subject: (trivfs_S_io_read, trivfs_S_io_write): Use void * buffers. --- storeio/io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'storeio') diff --git a/storeio/io.c b/storeio/io.c index 67d43c41..edab8e6d 100644 --- a/storeio/io.c +++ b/storeio/io.c @@ -84,7 +84,7 @@ trivfs_S_io_read (struct trivfs_protid *cred, return EBADF; else return open_read ((struct open *)cred->po->hook, - offs, amount, (char **)data, data_len); + offs, amount, (void **)data, data_len); } /* Tell how much data can be read from the object without blocking for @@ -126,7 +126,7 @@ trivfs_S_io_write (struct trivfs_protid *cred, return EBADF; else return open_write ((struct open *)cred->po->hook, - offs, (char *)data, data_len, amount); + offs, (void *)data, data_len, amount); } /* Change current read/write offset */ -- cgit v1.2.3