From c928f5e043a9b9f7c911a5c665bb78791659314c Mon Sep 17 00:00:00 2001 From: Nathan Neulinger Date: Wed, 21 Aug 2002 21:30:00 +0000 Subject: [PATCH] ukernel-updateosi-read-write-for-prototypes-20020821 cleanup --- src/afs/UKERNEL/afs_usrops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5