fix format specifier again

This commit is contained in:
Simon Morlat 2014-05-30 08:41:32 +02:00
parent 1a2e24b14a
commit 00fa127aec

View file

@ -371,7 +371,7 @@ void linphone_message_storage_init_chat_rooms(LinphoneCore *lc) {
}
static void _linphone_message_storage_profile(void*data,const char*statement, sqlite3_uint64 duration){
ms_warning("SQL statement '%s' took %llu microseconds", statement, (unsigned long long)duration / 1000LL );
ms_warning("SQL statement '%s' took %" PRIu64 " microseconds", statement, (uint64_t)(duration / 1000LL) );
}
static void linphone_message_storage_activate_debug(sqlite3* db, bool_t debug){