Sinks own their input iterators
[babeltrace.git] / lib / plugin-system / component-factory.c
index 46b4f62fc23b9a41af3ca5b0ce541b1a04ee131d..3fb02057c4a042db71c7176a8022c2164234630c 100644 (file)
@@ -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;
        }
@@ -435,7 +435,7 @@ add_component_class(struct bt_component_factory *factory, const char *name,
        }
 
        component_class = bt_component_class_create(type, name, description,
-               init, factory->current_plugin);
+                       init, factory->current_plugin);
        g_ptr_array_add(factory->component_classes, component_class);
 end:
        return ret;
This page took 0.023935 seconds and 4 git commands to generate.