From 9c08f9c7cfc84f20f48bdc4d035b9693352ff66a Mon Sep 17 00:00:00 2001 From: YoungHun Kim Date: Mon, 26 Mar 2018 14:47:56 +0900 Subject: [PATCH] Resolve the svace issue of g_module_name Change-Id: I737000ecffc8c67b685fb88bd0ce37b0b9d76d54 --- server/src/muse_server_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/muse_server_module.c b/server/src/muse_server_module.c index 0a17527..cbd33c0 100644 --- a/server/src/muse_server_module.c +++ b/server/src/muse_server_module.c @@ -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; } -- 2.7.4