diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-01-04 15:16:04 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-01-04 15:16:21 +0000 |
commit | 747bad7c09972298648e0ff5143de66b874ee612 (patch) | |
tree | 72ca627be5a4438ab4dd400d7026581b6c1c37db /lib | |
parent | 3a805c5cc1d3f78dcb42be05837529dec25e2e44 (diff) |
ldap.c: Fixed compilation warning
ldap.c:802: warning: comparison between signed and unsigned integer
expressions
Diffstat (limited to 'lib')
-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 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 || |