aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tail.c
diff options
context:
space:
mode:
authorproski <proski@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-08-22 15:38:16 +0000
committerproski <proski@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-08-22 15:38:16 +0000
commitc22ced0d57e12fc618290378f3bda4244a635035 (patch)
treed8a69b6ab0dc24348cb56e2e9f1fe75b12f72284 /coreutils/tail.c
parent92438653e94caeb41815e726bb30e87d01ba4f52 (diff)
downloadbusybox-w32-c22ced0d57e12fc618290378f3bda4244a635035.tar.gz
busybox-w32-c22ced0d57e12fc618290378f3bda4244a635035.tar.bz2
busybox-w32-c22ced0d57e12fc618290378f3bda4244a635035.zip
Fixed misuse of type "char"
git-svn-id: svn://busybox.net/trunk/busybox@980 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 6c4a6f468..c940bfef7 100644
--- a/coreutils/tail.c
+++ b/coreutils/tail.c
@@ -67,7 +67,7 @@ int tail_stream(int fd)
67 ssize_t endpoint=0; 67 ssize_t endpoint=0;
68 ssize_t count=0; 68 ssize_t count=0;
69 ssize_t filesize=0; 69 ssize_t filesize=0;
70 char direction=1; 70 int direction=1;
71 71
72 filelocation=0; 72 filelocation=0;
73 startpoint=bs=BUFSIZ; 73 startpoint=bs=BUFSIZ;