From 8bbddeca5b02893ed46d6a5bd8833a5be8ad656c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Fri, 19 Aug 2016 12:22:00 -0400 Subject: [PATCH] Workaround glib g_module_open bug MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit See https://bugzilla.gnome.org/show_bug.cgi?id=769391 Signed-off-by: Jérémie Galarneau --- lib/plugin-system/component-factory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugin-system/component-factory.c b/lib/plugin-system/component-factory.c index 46b4f62f..fbf36d68 100644 --- a/lib/plugin-system/component-factory.c +++ b/lib/plugin-system/component-factory.c @@ -107,7 +107,7 @@ bt_component_factory_load_file(struct bt_component_factory *factory, module = g_module_open(path, 0); if (!module) { - printf_error("Module open error: %s", g_module_error()); + printf_verbose("Module open error: %s\n", g_module_error()); ret = BT_COMPONENT_FACTORY_STATUS_ERROR; goto end; } -- 2.34.1