mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-31 10:19:23 +00:00
fix warning on centOs
This commit is contained in:
parent
a82a1acaa2
commit
9f01da42b9
1 changed files with 1 additions and 1 deletions
|
|
@ -385,7 +385,7 @@ LinphoneProxyConfig *Daemon::findProxy(int id) {
|
|||
|
||||
LinphoneAuthInfo *Daemon::findAuthInfo(int id) {
|
||||
const MSList *elem = linphone_core_get_auth_info_list(mLc);
|
||||
if (elem == NULL || id < 1 || id > ms_list_size(elem)) {
|
||||
if (elem == NULL || id < 1 || (unsigned int)id > ms_list_size(elem)) {
|
||||
return NULL;
|
||||
}
|
||||
while (id > 1) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue