diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-04-18 20:21:11 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-04-18 20:21:11 +0100 |
commit | 8763374f0e8feb6af54aa6b4642c58de3b3553ec (patch) | |
tree | 6ec6806749a863db2d995570fec15c8ebafa7bcb /lib | |
parent | 63388fe1f3ccc4adefbaefcd56854fd23c300938 (diff) |
url: Fix chksrc longer than 79 columns warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/url.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4468,7 +4468,8 @@ static CURLcode parse_url_login(struct SessionHandle *data, * Returns CURLE_OK on success. */ static CURLcode parse_login_details(const char *login, const size_t len, - char **userp, char **passwdp, char **optionsp) + char **userp, char **passwdp, + char **optionsp) { CURLcode result = CURLE_OK; char *utemp = NULL; |