mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-20 04:28:10 +00:00
Use standard unsigned int
This commit is contained in:
parent
4a3e43f2ff
commit
2394027f9e
1 changed files with 2 additions and 2 deletions
|
|
@ -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; i<obj->req_count; i++){
|
||||
LinphoneLDAPContactSearch* search = (LinphoneLDAPContactSearch*)ms_list_nth_data( obj->requests, i );
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue