aboutsummaryrefslogtreecommitdiff
path: root/scripts/config
diff options
context:
space:
mode:
authorvodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-31 11:57:06 +0000
committervodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-01-31 11:57:06 +0000
commit39d1185b3a90d4486843895f8009d3f90cdf4cff (patch)
tree49b78a5a8a5e5af9d6cbace93b32cc550068c5c6 /scripts/config
parent36a6ff0aac3ffd332a3bbb843516e5749281910c (diff)
downloadbusybox-w32-39d1185b3a90d4486843895f8009d3f90cdf4cff.tar.gz
busybox-w32-39d1185b3a90d4486843895f8009d3f90cdf4cff.tar.bz2
busybox-w32-39d1185b3a90d4486843895f8009d3f90cdf4cff.zip
removed unneed signed, avoid warning
git-svn-id: svn://busybox.net/trunk/busybox@13755 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'scripts/config')
-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";
38 38
39static void strip(char *str) 39static 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)))