X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=scripts%2Fkconfig%2Fconf.c;h=bc20cab9d0d6b184d9c3479d3b20584ac386b4d5;hb=24bfb00123e82a2e70bd115277d922438813515b;hp=70e7264c69420427097ca27788efd31053ad632d;hpb=fd4e5f29f7354c3e3edaa03d37a7bf83b0cbae36;p=powerpc.git diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 70e7264c69..bc20cab9d0 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -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)))