]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - scripts/kconfig/conf.c
[PATCH] Adapt scripts/ver_linux to new util-linux version strings
[karo-tx-linux.git] / scripts / kconfig / conf.c
index 70e7264c69420427097ca27788efd31053ad632d..bc20cab9d0d6b184d9c3479d3b20584ac386b4d5 100644 (file)
@@ -31,14 +31,14 @@ 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[] = N_("Sorry, no help available for this option yet.\n");
 
-static void strip(signed char *str)
+static void strip(char *str)
 {
-       signed char *p = str;
+       char *p = str;
        int l;
 
        while ((isspace(*p)))