From 53750c5a080203bcc4f9978ab06c00515f566073 Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Sun, 24 Dec 2017 22:43:55 +0100 Subject: [PATCH] fix compilation error --- tester/flexisip_tester.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tester/flexisip_tester.c b/tester/flexisip_tester.c index 9b8cbea34..22673cb57 100644 --- a/tester/flexisip_tester.c +++ b/tester/flexisip_tester.c @@ -208,7 +208,7 @@ static void text_message_expires(void) { linphone_core_set_network_reachable(marie->lc, FALSE); /* Wait for 5 seconds for surely cut marie of network */ - wait_for_until(pauline->lc, marie->lc, NULL, NULL, 5000); + wait_for_until(pauline->lc, marie->lc, NULL, 0, 5000); linphone_chat_room_send_message(linphone_core_get_chat_room(pauline->lc,marie->identity), "hello"); linphone_core_set_network_reachable(marie->lc, TRUE); @@ -227,7 +227,7 @@ static void text_call_expires(void) { linphone_core_set_network_reachable(marie->lc, FALSE); /* Wait for 5 seconds for surely cut marie of network */ - wait_for_until(pauline->lc, marie->lc, NULL, NULL, 5000); + wait_for_until(pauline->lc, marie->lc, NULL, 0, 5000); linphone_core_invite_address(pauline->lc,marie->identity); linphone_core_set_network_reachable(marie->lc, TRUE);