removed unneed signed, avoid warning

This commit is contained in:
"Vladimir N. Oleynik" 2006-01-31 11:57:06 +00:00
parent 81b94960a2
commit 4d57926bd3

View 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)))