From: Nathan Neulinger Date: Wed, 21 Aug 2002 21:30:00 +0000 (+0000) Subject: ukernel-updateosi-read-write-for-prototypes-20020821 X-Git-Tag: BP-openafs-rxkad-krb5~15 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=c928f5e043a9b9f7c911a5c665bb78791659314c;p=packages%2Fo%2Fopenafs.git ukernel-updateosi-read-write-for-prototypes-20020821 cleanup --- diff --git a/src/afs/UKERNEL/afs_usrops.c b/src/afs/UKERNEL/afs_usrops.c index c0c574706..e18c40b75 100644 --- a/src/afs/UKERNEL/afs_usrops.c +++ b/src/afs/UKERNEL/afs_usrops.c @@ -745,7 +745,7 @@ int osi_UFSTruncate(struct osi_file *fp, afs_int32 len) return 0; } -int afs_osi_Read(struct osi_file *fp, int offset, char *buf, afs_int32 len) +int afs_osi_Read(struct osi_file *fp, int offset, void *buf, afs_int32 len) { int rc, ret; int code; @@ -783,7 +783,7 @@ int afs_osi_Read(struct osi_file *fp, int offset, char *buf, afs_int32 len) return ret; } -int afs_osi_Write(struct osi_file *fp, afs_int32 offset, char *buf, afs_int32 len) +int afs_osi_Write(struct osi_file *fp, afs_int32 offset, void *buf, afs_int32 len) { int rc, ret; int code;