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 <sxw@inf.ed.ac.uk>
Tested-by: Derrick Brashear <shadow@dementia.org>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
Marc Dionne 2009-09-26 09:32:46 -04:00 committed by Derrick Brashear
parent 529d487d65
commit 291d31e55f

View File

@ -1381,7 +1381,7 @@ struct storeOps {
}; };
struct fetchOps { 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 (*read)(void *rock, afs_uint32 tlen, afs_uint32 *bytesread);
int (*write)(void *rock, struct osi_file *fp, afs_uint32 offset, int (*write)(void *rock, struct osi_file *fp, afs_uint32 offset,
afs_uint32 tlen, afs_uint32 *byteswritten); afs_uint32 tlen, afs_uint32 *byteswritten);