Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-13 22:04:51 +0400
committerEric Andersen <andersen@codepoet.org>1999-10-13 22:04:51 +0400
commit21943ce6416215ff1a2df7b5008460bf9099f478 (patch)
treed76fc76602dbad14cd2c07d32e81efc56347488a /util-linux
parentc6cb79dedfb1af4ce64e75cd1c0d3cc1bfa71225 (diff)
More fixes
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 ...]";
extern int more_main(int argc, char **argv)
{
- int c, lines=0, input;
+ int c, lines=0, input=0;
int next_page=0, rows = 24;
#ifdef BB_MORE_TERM
- int cols;
+ int cols=79;
struct winsize win;
#endif
struct stat st;