From e479377e63a93d9d5f9aeeca10f413ecf028f12c Mon Sep 17 00:00:00 2001 From: Philippe Charnier Date: Fri, 20 May 2005 12:55:38 +0000 Subject: [PATCH] Remove unused variable. Shorten the path to WARNS=6 compliance. --- lib/libstand/splitfs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;