From: Steve Holme Date: Sun, 4 Jan 2015 15:16:04 +0000 (+0000) Subject: ldap.c: Fixed compilation warning X-Git-Tag: curl-7_40_0~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=747bad7c09972298648e0ff5143de66b874ee612;p=thirdparty%2Fcurl.git ldap.c: Fixed compilation warning ldap.c:802: warning: comparison between signed and unsigned integer expressions --- diff --git a/lib/ldap.c b/lib/ldap.c index a10094c779..680e4d774b 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -710,7 +710,7 @@ static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp) char *path; char *p; char *q; - int i; + size_t i; if(!conn->data || !conn->data->state.path ||