diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-09-10 20:15:29 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-09-10 20:27:52 +0100 |
commit | 86d340af27e5296d7db25acdfbf8965670e40e79 (patch) | |
tree | b1d53d25b9fc4de15214a4b8a3a74d2cc580fcc1 /lib/ldap.c | |
parent | 5c14a7f06864f20a62b1fd1961d30f1902e2280a (diff) |
ldap.c: Fix compilation warning
warning: comparison between signed and unsigned integer expressions
Diffstat (limited to 'lib/ldap.c')
-rw-r--r-- | lib/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ldap.c b/lib/ldap.c index f14261ff4..c2fa1735f 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; |