removed unneed signed, avoid warning
author"Vladimir N. Oleynik" <dzo@simtreas.ru>
Tue, 31 Jan 2006 11:57:06 +0000 (11:57 -0000)
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>
Tue, 31 Jan 2006 11:57:06 +0000 (11:57 -0000)
scripts/config/conf.c

index edcf36d..4d804cf 100644 (file)
@@ -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)))