aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-10-13 18:04:51 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>1999-10-13 18:04:51 +0000
commitf6628dcbb838eb783c17bfd11651f0a30d84b269 (patch)
treed76fc76602dbad14cd2c07d32e81efc56347488a /util-linux
parent40a1a9f2652bbc731f04bdd41e325b4a00c503c1 (diff)
downloadbusybox-w32-f6628dcbb838eb783c17bfd11651f0a30d84b269.tar.gz
busybox-w32-f6628dcbb838eb783c17bfd11651f0a30d84b269.tar.bz2
busybox-w32-f6628dcbb838eb783c17bfd11651f0a30d84b269.zip
More fixes
git-svn-id: svn://busybox.net/trunk/busybox@22 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/more.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/more.c b/util-linux/more.c
index f89387436..a56ce97d7 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -49,10 +49,10 @@ const char more_usage[] = "[file ...]";
49 49
50extern int more_main(int argc, char **argv) 50extern int more_main(int argc, char **argv)
51{ 51{
52 int c, lines=0, input; 52 int c, lines=0, input=0;
53 int next_page=0, rows = 24; 53 int next_page=0, rows = 24;
54#ifdef BB_MORE_TERM 54#ifdef BB_MORE_TERM
55 int cols; 55 int cols=79;
56 struct winsize win; 56 struct winsize win;
57#endif 57#endif
58 struct stat st; 58 struct stat st;