From ab099fa8cb6e4a6281fe8d83b9db59f8c4a2eaa9 Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Mon, 3 Oct 2005 19:56:39 +0000 Subject: [PATCH] Re-indent; real commit with some changes coming shortly. This commit was SVN r7596. --- ompi/mca/coll/base/coll_base_open.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/ompi/mca/coll/base/coll_base_open.c b/ompi/mca/coll/base/coll_base_open.c index e0a41e02e0..f2ce0a7ec9 100644 --- a/ompi/mca/coll/base/coll_base_open.c +++ b/ompi/mca/coll/base/coll_base_open.c @@ -59,25 +59,25 @@ opal_list_t mca_coll_base_components_opened; */ int mca_coll_base_open(void) { - /* Open an output stream for this framework */ + /* Open an output stream for this framework */ - mca_coll_base_output = opal_output_open(NULL); + mca_coll_base_output = opal_output_open(NULL); - /* Open up all available components */ + /* Open up all available components */ - if (OMPI_SUCCESS != - mca_base_components_open("coll", mca_coll_base_output, - mca_coll_base_static_components, - &mca_coll_base_components_opened, true)) { - return OMPI_ERROR; - } - mca_coll_base_components_opened_valid = true; + if (OMPI_SUCCESS != + mca_base_components_open("coll", mca_coll_base_output, + mca_coll_base_static_components, + &mca_coll_base_components_opened, true)) { + return OMPI_ERROR; + } + mca_coll_base_components_opened_valid = true; - /* Find the index of the MCA "coll" param for selection */ + /* Find the index of the MCA "coll" param for selection */ - mca_coll_base_param = mca_base_param_find("coll", "base", NULL); + mca_coll_base_param = mca_base_param_find("coll", "base", NULL); - /* All done */ + /* All done */ - return OMPI_SUCCESS; + return OMPI_SUCCESS; }