aboutsummaryrefslogtreecommitdiff
path: root/scripts/config/textbox.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-07-15 06:01:05 +0000
committerEric Andersen <andersen@codepoet.org>2004-07-15 06:01:05 +0000
commit837f058fb307e0bcf7b9ad4f02a44ea3047f427e (patch)
treebde5459d496b1afc91b7d4a261b66252a47ca414 /scripts/config/textbox.c
parent449f2bca967dc4682a52487fe4a53f13c3623002 (diff)
downloadbusybox-w32-837f058fb307e0bcf7b9ad4f02a44ea3047f427e.tar.gz
busybox-w32-837f058fb307e0bcf7b9ad4f02a44ea3047f427e.tar.bz2
busybox-w32-837f058fb307e0bcf7b9ad4f02a44ea3047f427e.zip
Peter Kjellerstedt at axis.com writes:
Hello, the attached patch should bring extra/config in line with the Linux 2.6.7 sources. The following are the commit messages for the respective files from the Linux bk-repository: checklist.c: * fix menuconfig choice item help display confdata.c: * config: choice fix * kconfig: don't rename target dir when saving config expr.c, expr.h: * config: disable debug prints mconf.c: * fix menuconfig choice item help display menu.c: * Kconfig: use select statements symbol.c: * config: choice fix * Avoid bogus warning about recursive dependencies * c99 struct initialiser conversions textbox.c: * janitor: don't init statics to 0 util.c: * fix lxdialog behaviour //Peter
Diffstat (limited to 'scripts/config/textbox.c')
-rw-r--r--scripts/config/textbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/config/textbox.c b/scripts/config/textbox.c
index 8fe907718..a5a460b5c 100644
--- a/scripts/config/textbox.c
+++ b/scripts/config/textbox.c
@@ -27,8 +27,8 @@ static void print_line (WINDOW * win, int row, int width);
27static char *get_line (void); 27static char *get_line (void);
28static void print_position (WINDOW * win, int height, int width); 28static void print_position (WINDOW * win, int height, int width);
29 29
30static int hscroll = 0, fd, file_size, bytes_read; 30static int hscroll, fd, file_size, bytes_read;
31static int begin_reached = 1, end_reached = 0, page_length; 31static int begin_reached = 1, end_reached, page_length;
32static char *buf, *page; 32static char *buf, *page;
33 33
34/* 34/*