vserver 1.9.5.x5
[linux-2.6.git] / scripts / kconfig / conf.c
index cdc7201..a494d1a 100644 (file)
@@ -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)))