summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2015-01-04 15:16:04 +0000
committerSteve Holme <steve_holme@hotmail.com>2015-01-04 15:16:21 +0000
commit747bad7c09972298648e0ff5143de66b874ee612 (patch)
tree72ca627be5a4438ab4dd400d7026581b6c1c37db
parent3a805c5cc1d3f78dcb42be05837529dec25e2e44 (diff)
downloadgnurl-747bad7c09972298648e0ff5143de66b874ee612.tar.gz
gnurl-747bad7c09972298648e0ff5143de66b874ee612.tar.bz2
gnurl-747bad7c09972298648e0ff5143de66b874ee612.zip
ldap.c: Fixed compilation warning
ldap.c:802: warning: comparison between signed and unsigned integer expressions
-rw-r--r--lib/ldap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ldap.c b/lib/ldap.c
index a10094c77..680e4d774 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 ||