From: "Vladimir N. Oleynik" Date: Tue, 31 Jan 2006 11:57:06 +0000 (-0000) Subject: removed unneed signed, avoid warning X-Git-Tag: 1_1_0~260 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4d57926bd3197a2d56267af1417189823a7ae873;p=oweals%2Fbusybox.git removed unneed signed, avoid warning --- diff --git a/scripts/config/conf.c b/scripts/config/conf.c index edcf36d69..4d804cfa3 100644 --- a/scripts/config/conf.c +++ b/scripts/config/conf.c @@ -38,7 +38,7 @@ static char nohelp_text[] = "Sorry, no help available for this option yet.\n"; static void strip(char *str) { - signed char *p = str; + char *p = str; int l; while ((isspace(*p)))