diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-02 16:32:16 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-02 16:32:16 +0000 |
commit | ace35eeb889757b1d6ebc54fc2c7a9492a00c0c3 (patch) | |
tree | d7547e608c12469c8564657f8de5b498640d6dec /coreutils | |
parent | a71199e0f0b33c25edea6f57dcd0d9517d0d09ac (diff) | |
download | busybox-ace35eeb889757b1d6ebc54fc2c7a9492a00c0c3.tar.gz |
Remove networking/libiproute/linux/pkt_sched.h
(and networking/libiproute/linux/ since it become empty).
Style fixes.
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/tail.c | 2 |
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; } |