summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-11-13 23:36:57 +0000
committerJim Meyering <jim@meyering.net>2001-11-13 23:36:57 +0000
commit306433db5802ad0ea5ca4c653320ff104a3363c1 (patch)
tree44a5821c50e7eafac8c10a1c758f603251dbe79c /src
parenta94c64bcad08b9fc9b9931e44b2a24fa0509985e (diff)
downloadcoreutils-306433db5802ad0ea5ca4c653320ff104a3363c1.tar.xz
split a line that was too long
Diffstat (limited to 'src')
-rw-r--r--src/tail.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tail.c b/src/tail.c
index bdb8499a5..c7f2e0e51 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