Commit d48eb1dd authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

parse_args: fix a too long source code line

parent 4548e0fe
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1857,7 +1857,8 @@ ParameterError parse_args(struct GlobalConfig *config, int argc,
      bool used;

      /* Just add the URL please */
      result = getparameter((char *)"--url", argv[i], &used, config, operation);
      result = getparameter((char *)"--url", argv[i], &used, config,
                            operation);
    }
  }