1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-23 00:28: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:
Daniel Stenberg 2010-04-17 18:59:54 +02:00
parent b7848e4a72
commit 5d93525f30

View File

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