diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-02 16:32:16 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-01-02 16:32:16 +0000 |
commit | 82fd871d51afaeca36a2bc6723da1d848d4aeb9c (patch) | |
tree | d7547e608c12469c8564657f8de5b498640d6dec /coreutils/tail.c | |
parent | f5da2147834128e5f79bd3d2eb77f154d9aea77c (diff) | |
download | busybox-w32-82fd871d51afaeca36a2bc6723da1d848d4aeb9c.tar.gz busybox-w32-82fd871d51afaeca36a2bc6723da1d848d4aeb9c.tar.bz2 busybox-w32-82fd871d51afaeca36a2bc6723da1d848d4aeb9c.zip |
Remove networking/libiproute/linux/pkt_sched.h
(and networking/libiproute/linux/ since it become empty).
Style fixes.
git-svn-id: svn://busybox.net/trunk/busybox@17131 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/tail.c')
-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) | |||
163 | * starting file position may not be the beginning of the file. | 163 | * starting file position may not be the beginning of the file. |
164 | * Beware of backing up too far. See example in wc.c. | 164 | * Beware of backing up too far. See example in wc.c. |
165 | */ | 165 | */ |
166 | if (!(count|from_top) && lseek(fds[i], 0, SEEK_END) >= 0) { | 166 | if (!(count | from_top) && lseek(fds[i], 0, SEEK_END) >= 0) { |
167 | continue; | 167 | continue; |
168 | } | 168 | } |
169 | 169 | ||