From: Daniel Stenberg Date: Sat, 17 Apr 2010 16:59:54 +0000 (+0200) Subject: parseconfig: Value stored to 'line' is never read X-Git-Tag: curl-7_21_0~144^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d93525f30e8b2a422644b4ec09a82ebf04283cd;p=curl parseconfig: Value stored to 'line' is never read Make the function call with (void) as we don't care about the return code. --- diff --git a/src/main.c b/src/main.c index 6e3ef3d6a..0670b5f5c 100644 --- a/src/main.c +++ b/src/main.c @@ -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 */