Remove unused variable. Shorten the path to WARNS=6 compliance.

This commit is contained in:
Philippe Charnier 2005-05-20 12:55:38 +00:00
parent 3fe9d89a62
commit e479377e63
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=146443

View File

@ -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;