diff options
author | Philippe Charnier <charnier@FreeBSD.org> | 2005-05-20 12:55:38 +0000 |
---|---|---|
committer | Philippe Charnier <charnier@FreeBSD.org> | 2005-05-20 12:55:38 +0000 |
commit | e479377e63a93d9d5f9aeeca10f413ecf028f12c (patch) | |
tree | ede38d8de61262292941d004714a1fd9a3ff4e1e | |
parent | 3fe9d89a62e2d21951f33f54e81a66ae339605b0 (diff) |
Notes
-rw-r--r-- | lib/libstand/splitfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libstand/splitfs.c b/lib/libstand/splitfs.c index 9adcdec96f6a..af28704bc465 100644 --- a/lib/libstand/splitfs.c +++ b/lib/libstand/splitfs.c @@ -192,7 +192,8 @@ splitfs_close(struct open_file *f) static int splitfs_read(struct open_file *f, void *buf, size_t size, size_t *resid) { - int i, nread, totread; + ssize_t nread; + size_t totread; struct split_file *sf; sf = (struct split_file *)f->f_fsdata; |