1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

ldap.c: Fix compilation warning

warning: comparison between signed and unsigned integer expressions
This commit is contained in:
Steve Holme 2013-09-10 20:15:29 +01:00
parent 5c14a7f068
commit 86d340af27

View File

@ -685,7 +685,7 @@ static int _ldap_url_parse (const struct connectdata *conn,
static void _ldap_free_urldesc (LDAPURLDesc *ludp) static void _ldap_free_urldesc (LDAPURLDesc *ludp)
{ {
int i; size_t i;
if(!ludp) if(!ludp)
return; return;