From 24cd60cf0da9f7a90e3c1c35e9d003dda365129c Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Tue, 18 Oct 2016 23:19:25 +0200 Subject: [PATCH] fix windows compiler warnings --- tester/call_single_tester.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tester/call_single_tester.c b/tester/call_single_tester.c index 936c23be3..8b11a543d 100644 --- a/tester/call_single_tester.c +++ b/tester/call_single_tester.c @@ -4833,8 +4833,8 @@ static void call_with_encryption_mandatory(bool_t caller_has_encryption_mandator BC_ASSERT_EQUAL(linphone_call_get_audio_stats(linphone_core_get_current_call(pauline->lc))->rtp_stats.packet_sent, 0, int, "%i"); #endif /*however we can trust packet_recv from the other party instead */ - BC_ASSERT_EQUAL(linphone_call_get_audio_stats(linphone_core_get_current_call(marie->lc))->rtp_stats.packet_recv, 0, int, "%i"); - BC_ASSERT_EQUAL(linphone_call_get_audio_stats(linphone_core_get_current_call(pauline->lc))->rtp_stats.packet_recv, 0, int, "%i"); + BC_ASSERT_EQUAL((int)linphone_call_get_audio_stats(linphone_core_get_current_call(marie->lc))->rtp_stats.packet_recv, 0, int, "%i"); + BC_ASSERT_EQUAL((int)linphone_call_get_audio_stats(linphone_core_get_current_call(pauline->lc))->rtp_stats.packet_recv, 0, int, "%i"); end_call(marie, pauline); end: