From 2394027f9eaab48c16d579155be45bcfc753fe90 Mon Sep 17 00:00:00 2001 From: Guillaume BIENKOWSKI Date: Fri, 24 Jan 2014 10:44:26 +0100 Subject: [PATCH] Use standard unsigned int --- coreapi/ldap/ldapprovider.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coreapi/ldap/ldapprovider.c b/coreapi/ldap/ldapprovider.c index 93bd84787..f9a4add67 100644 --- a/coreapi/ldap/ldapprovider.c +++ b/coreapi/ldap/ldapprovider.c @@ -41,7 +41,7 @@ struct _LinphoneLDAPContactProvider LDAP* ld; MSList* requests; - uint req_count; + unsigned int req_count; // bind transaction bool_t connected; @@ -310,7 +310,7 @@ static bool_t linphone_ldap_contact_provider_iterate(void *data) if( obj->ld && obj->connected ){ // check for pending searches - uint i; + unsigned int i; for( i=0; ireq_count; i++){ LinphoneLDAPContactSearch* search = (LinphoneLDAPContactSearch*)ms_list_nth_data( obj->requests, i ); -- GitLab