diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-08-02 00:57:33 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-08-02 00:57:33 +0000 |
commit | 273175d0d3903f89e740adad520af516c5ca72b4 (patch) | |
tree | dea82fb76c3797d61d34f1e59ab4a0c232518b4e /package/config/conf.c | |
parent | a18f36417b16217a2793fe74a588d8f0f9491417 (diff) | |
download | buildroot-novena-273175d0d3903f89e740adad520af516c5ca72b4.tar.gz buildroot-novena-273175d0d3903f89e740adad520af516c5ca72b4.zip |
update kbuild system
Diffstat (limited to 'package/config/conf.c')
-rw-r--r-- | package/config/conf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/config/conf.c b/package/config/conf.c index 46b7e08f7..8ca430b0b 100644 --- a/package/config/conf.c +++ b/package/config/conf.c @@ -31,14 +31,14 @@ char *defconfig_file; static int indent = 1; static int valid_stdin = 1; static int conf_cnt; -static char line[128]; +static signed char line[128]; static struct menu *rootEntry; static char nohelp_text[] = "Sorry, no help available for this option yet.\n"; -static void strip(char *str) +static void strip(signed char *str) { - char *p = str; + signed char *p = str; int l; while ((isspace(*p))) |