From: Steve Holme Date: Thu, 18 Apr 2013 19:21:11 +0000 (+0100) Subject: url: Fix chksrc longer than 79 columns warning X-Git-Tag: curl-7_31_0~147 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8763374f0e8feb6af54aa6b4642c58de3b3553ec;p=thirdparty%2Fcurl.git url: Fix chksrc longer than 79 columns warning --- diff --git a/lib/url.c b/lib/url.c index 6f23795248..ffecd37061 100644 --- a/lib/url.c +++ b/lib/url.c @@ -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;