From: Steve Holme Date: Tue, 10 Sep 2013 19:15:29 +0000 (+0100) Subject: ldap.c: Fix compilation warning X-Git-Tag: curl-7_33_0~114 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=86d340af27e5296d7db25acdfbf8965670e40e79;p=thirdparty%2Fcurl.git ldap.c: Fix compilation warning warning: comparison between signed and unsigned integer expressions --- diff --git a/lib/ldap.c b/lib/ldap.c index f14261ff49..c2fa1735fa 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -685,7 +685,7 @@ static int _ldap_url_parse (const struct connectdata *conn, static void _ldap_free_urldesc (LDAPURLDesc *ludp) { - int i; + size_t i; if(!ludp) return;