From 2d40dd7139f978e711107cb7f8b0e5bd8225915a Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 14 Mar 2017 11:44:38 +0100 Subject: [PATCH] Also fixed global state changed cb type in implementation --- coreapi/linphonecore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 4b36d6c9a..d1a6b37f8 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -173,7 +173,7 @@ LinphoneCoreCbs *linphone_core_get_current_callbacks(const LinphoneCore *lc) { return lc->current_cbs; } -void linphone_core_cbs_set_global_state_changed(LinphoneCoreCbs *cbs, LinphoneCoreGlobalStateChangedCb cb) { +void linphone_core_cbs_set_global_state_changed(LinphoneCoreCbs *cbs, LinphoneCoreCbsGlobalStateChangedCb cb) { cbs->vtable->global_state_changed = cb; }