From 01b9a97323d8d9111d435d897ec8d5959ba5b573 Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Mon, 13 Oct 2014 12:07:28 +0200 Subject: [PATCH] Fix linphone_core_set_log_handler(). --- coreapi/linphonecore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 427b61577..4bfafcd0d 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -144,7 +144,7 @@ const LinphoneAddress *linphone_core_get_current_call_remote_address(struct _Lin } void linphone_core_set_log_handler(OrtpLogFunc logfunc) { - ortp_set_log_handler(liblinphone_log_func); + ortp_set_log_handler(logfunc); } void linphone_core_set_log_file(FILE *file) {