mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
Cast size_t to int in ms_error
This commit is contained in:
parent
300c8b8737
commit
1260c18640
2 changed files with 2 additions and 2 deletions
|
|
@ -5441,7 +5441,7 @@ void linphone_core_migrate_logs_from_rc_to_db(LinphoneCore *lc) {
|
|||
lp_config_clean_section(lpc, logsection);
|
||||
}
|
||||
} else {
|
||||
ms_error("not as many logs saved in db has logs read from rc (%i in rc against %i in db)!", original_logs_count, migrated_logs_count);
|
||||
ms_error("not as many logs saved in db has logs read from rc (%i in rc against %i in db)!", (int)original_logs_count, (int)migrated_logs_count);
|
||||
}
|
||||
|
||||
bctbx_list_free_with_data(logs_to_migrate, (void (*)(void*))linphone_call_log_unref);
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit a7e40577252419e9cf6e3288e610d49d7fed3936
|
||||
Subproject commit 34160e44ddb2a6b064cb5623cd8c8a67ed766587
|
||||
Loading…
Add table
Reference in a new issue