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 | |
parent | 81b94960a2bc09e18e5c491b1afeca08ef681b0a (diff) | |
download | busybox-w32-4d57926bd3197a2d56267af1417189823a7ae873.tar.gz busybox-w32-4d57926bd3197a2d56267af1417189823a7ae873.tar.bz2 busybox-w32-4d57926bd3197a2d56267af1417189823a7ae873.zip |
removed unneed signed, avoid warning
-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"; | |||
38 | 38 | ||
39 | static void strip(char *str) | 39 | static void strip(char *str) |
40 | { | 40 | { |
41 | signed char *p = str; | 41 | char *p = str; |
42 | int l; | 42 | int l; |
43 | 43 | ||
44 | while ((isspace(*p))) | 44 | while ((isspace(*p))) |