From 5d93525f30e8b2a422644b4ec09a82ebf04283cd Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 17 Apr 2010 18:59:54 +0200 Subject: [PATCH] parseconfig: Value stored to 'line' is never read Make the function call with (void) as we don't care about the return code. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.40.0