mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
Fixing size_t printing error format.
This commit is contained in:
parent
13a451c5d5
commit
2f5e6f894b
1 changed files with 2 additions and 2 deletions
|
|
@ -189,8 +189,8 @@ int main(int argc, char *argv[]){
|
|||
ms_usleep(50000);
|
||||
if (print_stats) {
|
||||
ms_message("*********************************");
|
||||
ms_message("*Current number of calls [%10i] *",ms_list_size(linphone_core_get_calls(lc)));
|
||||
ms_message("*Number of calls until now [%10i] *",ms_list_size(linphone_core_get_call_logs(lc)));
|
||||
ms_message("*Current number of calls [%10u] *",(unsigned int)ms_list_size(linphone_core_get_calls(lc)));
|
||||
ms_message("*Number of calls until now [%10u] *",(unsigned int)ms_list_size(linphone_core_get_call_logs(lc)));
|
||||
ms_message("*********************************");
|
||||
print_stats=FALSE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue