From 475574011db63b2a80091e936d922198114184ab Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 28 Sep 2002 09:21:17 +0000 Subject: (tail_bytes): Change type of bytes_remaining to off_t to avoid overflow. Reported by Hans Lermen. --- src/tail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tail.c') diff --git a/src/tail.c b/src/tail.c index d9b1b2c74..0d5ea589b 100644 --- a/src/tail.c +++ b/src/tail.c @@ -1070,7 +1070,7 @@ tail_bytes (const char *pretty_filename, int fd, off_t n_bytes) if (S_ISREG (stats.st_mode)) { off_t current_pos, end_pos; - size_t bytes_remaining; + off_t bytes_remaining; if ((current_pos = lseek (fd, (off_t) 0, SEEK_CUR)) != -1 && (end_pos = lseek (fd, (off_t) 0, SEEK_END)) != -1) -- cgit v1.2.3-54-g00ecf