From: Marc Dionne Date: Sat, 26 Sep 2009 13:32:46 +0000 (-0400) Subject: fetchOps: fix more() prototype X-Git-Tag: openafs-devel-1_5_65~42 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=291d31e55f64992d8d529522f3479e5ffe5fd607;p=packages%2Fo%2Fopenafs.git 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 --- diff --git a/src/afs/afs.h b/src/afs/afs.h index 27d7645af..813bbac69 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);