Oops, unrenamed a variable

This commit is contained in:
Neale Pickett 2014-06-23 16:17:55 -06:00
parent c329e9ad8a
commit 76c46f481e
1 changed files with 1 additions and 1 deletions

2
eris.c
View File

@ -514,7 +514,7 @@ ssize_t
fake_sendfile(int out_fd, int in_fd, off_t *offset, size_t count)
{
char buf[BUFFER_SIZE];
ssize_t l, sent;
ssize_t l, m;
/* is mmap quicker? does it matter? */
if (-1 == lseek(in_fd, *offset, SEEK_SET)) {