parseconfig: Value stored to 'line' is never read

Make the function call with (void) as we don't care about the
return code.
This commit is contained in:
Daniel Stenberg 2010-04-17 18:59:54 +02:00
parent b7848e4a72
commit 5d93525f30
1 changed files with 1 additions and 1 deletions

View File

@ -3247,7 +3247,7 @@ static int parseconfig(const char *filename,
break;
}
alloced_param=TRUE;
line = (char*) unslashquote(line, param);
(void)unslashquote(line, param);
}
else {
param=line; /* parameter starts here */