Commit 5d93525f authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

parseconfig: Value stored to 'line' is never read

Make the function call with (void) as we don't care about the
return code.
parent b7848e4a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */