1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-10 11:35:07 -05:00

parse_args: fix a too long source code line

This commit is contained in:
Daniel Stenberg 2014-02-25 23:36:13 +01:00
parent 4548e0fe71
commit d48eb1dd69

View File

@ -1857,7 +1857,8 @@ ParameterError parse_args(struct GlobalConfig *config, int argc,
bool used; bool used;
/* Just add the URL please */ /* Just add the URL please */
result = getparameter((char *)"--url", argv[i], &used, config, operation); result = getparameter((char *)"--url", argv[i], &used, config,
operation);
} }
} }