From: Daniel Stenberg Date: Tue, 25 Feb 2014 22:36:13 +0000 (+0100) Subject: parse_args: fix a too long source code line X-Git-Tag: curl-7_36_0~80 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d48eb1dd69aa881c315c6dc7c9cdd2acc99c0b77;p=curl parse_args: fix a too long source code line --- diff --git a/src/tool_getparam.c b/src/tool_getparam.c index 9cd996c90..5e907416b 100644 --- a/src/tool_getparam.c +++ b/src/tool_getparam.c @@ -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); } }