mirror of
https://github.com/curl/curl.git
synced 2026-05-15 10:06:19 +03: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue