summaryrefslogtreecommitdiff
path: root/src/tail.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tail.c')
-rw-r--r--src/tail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tail.c b/src/tail.c
index 9e95dee7e..75e9d53e3 100644
--- a/src/tail.c
+++ b/src/tail.c
@@ -434,7 +434,7 @@ static off_t
xlseek (int fd, off_t offset, int whence, char const *filename)
{
off_t new_offset = lseek (fd, offset, whence);
- char buf[INT_BUFSIZE_BOUND (off_t)];
+ char buf[INT_BUFSIZE_BOUND (offset)];
char *s;
if (0 <= new_offset)