Fix typo breaking functionality in tail

This commit is contained in:
Wolfgang Corcoran-Mathe 2014-09-17 10:05:27 +01:00 committed by sin
parent b712ef44ad
commit 7a6af2faba
1 changed files with 1 additions and 1 deletions

2
tail.c
View File

@ -60,7 +60,7 @@ dropinit(FILE *fp, const char *str, long n)
ssize_t len;
unsigned long i = 0;
while(i < n && ((len = agetline(&buf, &size, fp) != -1)))
while(i < n && ((len = agetline(&buf, &size, fp)) != -1))
if(len && buf[len - 1] == '\n')
i++;
free(buf);