From: Jim Meyering Date: Tue, 13 Nov 2001 23:36:57 +0000 (+0000) Subject: split a line that was too long X-Git-Tag: TEXTUTILS-2_0_17~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=306433db5802ad0ea5ca4c653320ff104a3363c1;p=thirdparty%2Fcoreutils.git split a line that was too long --- 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