]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
split a line that was too long
authorJim Meyering <jim@meyering.net>
Tue, 13 Nov 2001 23:36:57 +0000 (23:36 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 13 Nov 2001 23:36:57 +0000 (23:36 +0000)
src/tail.c

index bdb8499a5a7f6181d3ca911d8d5d069fbb7cef07..c7f2e0e51f446933adf1f685078ffe79c5aa7bf6 100644 (file)
@@ -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