aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/tail.c')
-rw-r--r--coreutils/tail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c
index a753a10b7..98fbcc7c4 100644
--- a/coreutils/tail.c
+++ b/coreutils/tail.c
@@ -163,7 +163,7 @@ int tail_main(int argc, char **argv)
* starting file position may not be the beginning of the file.
* Beware of backing up too far. See example in wc.c.
*/
- if (!(count|from_top) && lseek(fds[i], 0, SEEK_END) >= 0) {
+ if (!(count | from_top) && lseek(fds[i], 0, SEEK_END) >= 0) {
continue;
}