From 360470eb4a940670e034e3ac0827c192649b28b6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 27 Oct 2016 19:09:11 -0400 Subject: [PATCH] Fix space indentations MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- lib/plugin-system/component-factory.c | 2 +- plugins/ctf/plugin.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 -- 2.34.1