diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-02-25 23:36:13 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-02-25 23:36:13 +0100 |
commit | d48eb1dd69aa881c315c6dc7c9cdd2acc99c0b77 (patch) | |
tree | 3fb3cdd68db64dd082cd2ef3f92c5e3cd3b746b2 /src | |
parent | 4548e0fe710305535e618e06a5dcf11825cdfced (diff) |
parse_args: fix a too long source code line
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_getparam.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); } } |