aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-02-25 23:36:13 +0100
committerDaniel Stenberg <daniel@haxx.se>2014-02-25 23:36:13 +0100
commitd48eb1dd69aa881c315c6dc7c9cdd2acc99c0b77 (patch)
tree3fb3cdd68db64dd082cd2ef3f92c5e3cd3b746b2
parent4548e0fe710305535e618e06a5dcf11825cdfced (diff)
parse_args: fix a too long source code line
-rw-r--r--src/tool_getparam.c3
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);
}
}