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:
@@ -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 */
|
||||||
|
|||||||
Reference in New Issue
Block a user