This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / scripts / kconfig / conf.c
index 7241299..a1032aa 100644 (file)
@@ -32,16 +32,16 @@ char *defconfig_file;
 static int indent = 1;
 static int valid_stdin = 1;
 static int conf_cnt;
-static signed char line[128];
+static char line[128];
 static struct menu *rootEntry;
 
 static char nohelp_text[] = "Sorry, no help available for this option yet.\n";
 
 static int return_value = 0;
 
-static void strip(signed char *str)
+static void strip(char *str)
 {
-       signed char *p = str;
+       char *p = str;
        int l;
 
        while ((isspace(*p)))