diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-01-31 11:57:06 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2006-01-31 11:57:06 +0000 |
commit | 4d57926bd3197a2d56267af1417189823a7ae873 (patch) | |
tree | 49b78a5a8a5e5af9d6cbace93b32cc550068c5c6 /scripts | |
parent | 81b94960a2bc09e18e5c491b1afeca08ef681b0a (diff) | |
download | busybox-4d57926bd3197a2d56267af1417189823a7ae873.tar.gz |
removed unneed signed, avoid warning
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/config/conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |