Fix incorrect function pointer conversion
authorJi-hoon Lee <dalton.lee@samsung.com>
Tue, 19 Mar 2019 08:06:55 +0000 (17:06 +0900)
committerJi-hoon Lee <dalton.lee@samsung.com>
Tue, 26 Mar 2019 07:10:19 +0000 (16:10 +0900)
Change-Id: I90354d93737ca22f84384c8412ef0cdbd748d3cc

src/multi_assistant_service_plugin.c

index 48dde71..a74099d 100644 (file)
@@ -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 {