Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2006-01-31 14:57:06 +0300
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2006-01-31 14:57:06 +0300
commit4d57926bd3197a2d56267af1417189823a7ae873 (patch)
tree49b78a5a8a5e5af9d6cbace93b32cc550068c5c6 /scripts
parent81b94960a2bc09e18e5c491b1afeca08ef681b0a (diff)
removed unneed signed, avoid warning
Diffstat (limited to 'scripts')
-rw-r--r--scripts/config/conf.c2
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)))