mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 16:18:48 -05:00
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:
parent
b7848e4a72
commit
5d93525f30
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user