From: Jérémie Galarneau Date: Fri, 19 Aug 2016 16:22:00 +0000 (-0400) Subject: Workaround glib g_module_open bug X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=8bbddeca5b02893ed46d6a5bd8833a5be8ad656c;p=deliverable%2Fbabeltrace.git Workaround glib g_module_open bug See https://bugzilla.gnome.org/show_bug.cgi?id=769391 Signed-off-by: Jérémie Galarneau --- diff --git a/lib/plugin-system/component-factory.c b/lib/plugin-system/component-factory.c index 46b4f62fc..fbf36d683 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; }