diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-04-18 19:18:02 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-04-18 19:18:02 +0100 |
commit | 63388fe1f3ccc4adefbaefcd56854fd23c300938 (patch) | |
tree | a385b2b391a7e3993ec33d3705acc90d6465c56e | |
parent | b75a88aa724c555761f5f4098eed6d28cd51b295 (diff) |
url: Fix incorrect variable type for result code
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4470,7 +4470,7 @@ static CURLcode parse_url_login(struct SessionHandle *data, static CURLcode parse_login_details(const char *login, const size_t len, char **userp, char **passwdp, char **optionsp) { - int result = CURLE_OK; + CURLcode result = CURLE_OK; char *utemp = NULL; char *ptemp = NULL; char *otemp = NULL; |