diff options
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/tail.c b/toys/posix/tail.c index 80556e2b..910b88f3 100644 --- a/toys/posix/tail.c +++ b/toys/posix/tail.c @@ -74,7 +74,7 @@ static int try_lseek(int fd, long bytes, long lines) { struct line_list *list = 0, *temp; int flag = 0, chunk = sizeof(toybuf); - ssize_t pos = lseek(fd, 0, SEEK_END); + off_t pos = lseek(fd, 0, SEEK_END); // If lseek() doesn't work on this stream, return now. if (pos<0) return 0; |