From 291d31e55f64992d8d529522f3479e5ffe5fd607 Mon Sep 17 00:00:00 2001 From: Marc Dionne Date: Sat, 26 Sep 2009 09:32:46 -0400 Subject: [PATCH] fetchOps: fix more() prototype Adjust the prototype in the fetchOps structure to match the recent change to rxfs_fetchMore(). Reviewed-on: http://gerrit.openafs.org/499 Reviewed-by: Simon Wilkinson Tested-by: Derrick Brashear Reviewed-by: Derrick Brashear --- src/afs/afs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/afs/afs.h b/src/afs/afs.h index 27d7645af4..813bbac69a 100644 --- a/src/afs/afs.h +++ b/src/afs/afs.h @@ -1381,7 +1381,7 @@ struct storeOps { }; struct fetchOps { - int (*more)(void *rock, afs_uint32 *length, afs_uint32 *moredata); + int (*more)(void *rock, afs_int32 *length, afs_uint32 *moredata); int (*read)(void *rock, afs_uint32 tlen, afs_uint32 *bytesread); int (*write)(void *rock, struct osi_file *fp, afs_uint32 offset, afs_uint32 tlen, afs_uint32 *byteswritten);