commit | 4d57926bd3197a2d56267af1417189823a7ae873 | [log] [tgz] |
---|---|---|
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | Tue Jan 31 11:57:06 2006 +0000 |
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | Tue Jan 31 11:57:06 2006 +0000 |
tree | 49b78a5a8a5e5af9d6cbace93b32cc550068c5c6 | |
parent | 81b94960a2bc09e18e5c491b1afeca08ef681b0a [diff] |
removed unneed signed, avoid warning
diff --git a/scripts/config/conf.c b/scripts/config/conf.c index edcf36d..4d804cf 100644 --- a/scripts/config/conf.c +++ b/scripts/config/conf.c
@@ -38,7 +38,7 @@ static void strip(char *str) { - signed char *p = str; + char *p = str; int l; while ((isspace(*p)))