diff options
author | Pavel Roskin | 2000-08-22 15:38:16 +0000 |
---|---|---|
committer | Pavel Roskin | 2000-08-22 15:38:16 +0000 |
commit | 8237add8d0d8838d880a65bf6d86ddf996671eb3 (patch) | |
tree | d8a69b6ab0dc24348cb56e2e9f1fe75b12f72284 /tail.c | |
parent | 32f2769800e5732172bff35fa8ad1c5b0186b99a (diff) | |
download | busybox-8237add8d0d8838d880a65bf6d86ddf996671eb3.zip busybox-8237add8d0d8838d880a65bf6d86ddf996671eb3.tar.gz |
Fixed misuse of type "char"
Diffstat (limited to 'tail.c')
-rw-r--r-- | tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,7 @@ int tail_stream(int fd) ssize_t endpoint=0; ssize_t count=0; ssize_t filesize=0; - char direction=1; + int direction=1; filelocation=0; startpoint=bs=BUFSIZ; |