From: Jérémie Galarneau Date: Thu, 27 Oct 2016 23:09:11 +0000 (-0400) Subject: Fix space indentations X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=360470eb4a940670e034e3ac0827c192649b28b6;p=deliverable%2Fbabeltrace.git Fix space indentations Signed-off-by: Jérémie Galarneau --- diff --git a/lib/plugin-system/component-factory.c b/lib/plugin-system/component-factory.c index c5ac08abd..fbdf0f232 100644 --- a/lib/plugin-system/component-factory.c +++ b/lib/plugin-system/component-factory.c @@ -227,7 +227,7 @@ bt_component_factory_load_dir(struct bt_component_factory *factory, goto end; } } else if (S_ISREG(st.st_mode)) { - bt_component_factory_load_file(factory, file_path); + bt_component_factory_load_file(factory, file_path); } } end: diff --git a/plugins/ctf/plugin.c b/plugins/ctf/plugin.c index 454e4599d..0aac9032f 100644 --- a/plugins/ctf/plugin.c +++ b/plugins/ctf/plugin.c @@ -39,7 +39,7 @@ BT_PLUGIN_LICENSE("MIT"); /* Declare component classes implemented by this plug-in. */ BT_PLUGIN_COMPONENT_CLASSES_BEGIN BT_PLUGIN_SOURCE_COMPONENT_CLASS_ENTRY(CTF_FS_COMPONENT_NAME, - CTF_FS_COMPONENT_DESCRIPTION, ctf_fs_init); + CTF_FS_COMPONENT_DESCRIPTION, ctf_fs_init) BT_PLUGIN_SOURCE_COMPONENT_CLASS_ENTRY(LTTNG_LIVE_COMPONENT_NAME, - LTTNG_LIVE_COMPONENT_DESCRIPTION, lttng_live_init); + LTTNG_LIVE_COMPONENT_DESCRIPTION, lttng_live_init) BT_PLUGIN_COMPONENT_CLASSES_END