aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-09-10 20:15:29 +0100
committerSteve Holme <steve_holme@hotmail.com>2013-09-10 20:27:52 +0100
commit86d340af27e5296d7db25acdfbf8965670e40e79 (patch)
treeb1d53d25b9fc4de15214a4b8a3a74d2cc580fcc1 /lib
parent5c14a7f06864f20a62b1fd1961d30f1902e2280a (diff)
ldap.c: Fix compilation warning
warning: comparison between signed and unsigned integer expressions
Diffstat (limited to 'lib')
-rw-r--r--lib/ldap.c2
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;