From 9d99aa7c001184b4f4cc41fa093cd7deb97e953f Mon Sep 17 00:00:00 2001 From: Erwan Croze Date: Tue, 5 Jul 2016 10:07:09 +0200 Subject: [PATCH] Fix previous commit --- coreapi/linphonecore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 982d801ad..1e142de88 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -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)!", (int)original_logs_count, (int)migrated_logs_count); + ms_error("not as many logs saved in db has logs read from rc ("FORMAT_SIZE_T" in rc against "FORMAT_SIZE_T" in db)!", original_logs_count, migrated_logs_count); } bctbx_list_free_with_data(logs_to_migrate, (void (*)(void*))linphone_call_log_unref);