From 306433db5802ad0ea5ca4c653320ff104a3363c1 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 13 Nov 2001 23:36:57 +0000 Subject: [PATCH] split a line that was too long --- src/tail.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tail.c b/src/tail.c index bdb8499a5a..c7f2e0e51f 100644 --- a/src/tail.c +++ b/src/tail.c @@ -1106,7 +1106,8 @@ tail_lines (const char *pretty_filename, int fd, long int n_lines) && (length = lseek (fd, (off_t) 0, SEEK_END)) >= 0 && start_pos < length) { - if (length != 0 && file_lines (pretty_filename, fd, n_lines, start_pos, length)) + if (length != 0 && file_lines (pretty_filename, fd, n_lines, + start_pos, length)) return 1; } else -- 2.47.3