Resolve the svace issue of g_module_name 15/173815/1 submit/tizen/20180326.055136
authorYoungHun Kim <yh8004.kim@samsung.com>
Mon, 26 Mar 2018 05:47:56 +0000 (14:47 +0900)
committerYoungHun Kim <yh8004.kim@samsung.com>
Mon, 26 Mar 2018 05:47:58 +0000 (14:47 +0900)
Change-Id: I737000ecffc8c67b685fb88bd0ce37b0b9d76d54

server/src/muse_server_module.c

index 0a17527..cbd33c0 100644 (file)
@@ -176,7 +176,7 @@ gboolean ms_module_close(muse_module_h m)
 
        LOGD("Closing module %s", g_module_name(m->ch[MUSE_CHANNEL_MSG].dll_handle));
        if (!g_module_close(m->ch[MUSE_CHANNEL_MSG].dll_handle)) {
-               LOGE("Couldn't close dll_handle %s: %s", g_module_name(m->ch[MUSE_CHANNEL_MSG].dll_handle), g_module_error());
+               LOGE("Couldn't close dll_handle %s", g_module_error());
                g_mutex_unlock(&module->lock);
                return FALSE;
        }