From 28a1116e4164562125553be82f7307ae8ca91e63 Mon Sep 17 00:00:00 2001 From: Ji-hoon Lee Date: Tue, 19 Mar 2019 17:06:55 +0900 Subject: [PATCH] Fix incorrect function pointer conversion Change-Id: I90354d93737ca22f84384c8412ef0cdbd748d3cc --- src/multi_assistant_service_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/multi_assistant_service_plugin.c b/src/multi_assistant_service_plugin.c index 48dde71..a74099d 100644 --- a/src/multi_assistant_service_plugin.c +++ b/src/multi_assistant_service_plugin.c @@ -548,7 +548,7 @@ int multi_assistant_service_plugin_send_assistant_specific_command(const char* a { int ret = -1; if (NULL != g_handle) { - wakeup_manager_update_voice_feedback_state func = _wakeup_manager_interface.send_assistant_specific_command; + wakeup_manager_send_assistant_specific_command func = _wakeup_manager_interface.send_assistant_specific_command; if (NULL == func) { MAS_LOGE("[ERROR] symbol lookup failed : %s", MA_WAKEUP_MANAGER_FUNC_SEND_ASSISTANT_SPECIFIC_COMMAND); } else { -- 2.34.1