From 5f0d265abfc0d771497f6cb61803c35b3d7a93d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Thu, 19 Nov 2015 14:47:16 +0100 Subject: [PATCH] Fix an imlicit declaration --- Classes/LinphoneManager.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/LinphoneManager.m b/Classes/LinphoneManager.m index 27249a99f..69318b67c 100644 --- a/Classes/LinphoneManager.m +++ b/Classes/LinphoneManager.m @@ -1960,7 +1960,7 @@ static void audioRouteChangeListenerCallback(void *inUserData, // 1 // Finally we can make the call LinphoneProxyConfig *proxyCfg; linphone_core_get_default_proxy(theLinphoneCore, &proxyCfg); - LinphoneCallParams *lcallParams = linphone_core_create_default_call_parameters(theLinphoneCore); + LinphoneCallParams *lcallParams = linphone_core_create_call_params(theLinphoneCore, NULL); if ([self lpConfigBoolForKey:@"edge_opt_preference"] && (self.network == network_2g)) { LOGI(@"Enabling low bandwidth mode"); linphone_call_params_enable_low_bandwidth(lcallParams, YES);