From b64ea09d7257996b6efa107a03b9316334bd5fb7 Mon Sep 17 00:00:00 2001 From: Abhishek Kulkarni Date: Wed, 13 Jul 2011 23:34:34 +0000 Subject: [PATCH] Fix C/R-related error messages during initialization. This commit was SVN r24901. --- opal/runtime/opal_init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/opal/runtime/opal_init.c b/opal/runtime/opal_init.c index eb570bf38b..5bf968b688 100644 --- a/opal/runtime/opal_init.c +++ b/opal/runtime/opal_init.c @@ -451,11 +451,11 @@ opal_init(int* pargc, char*** pargv) * wish to use this framework, it is safe to remove the protection. */ if( OPAL_SUCCESS != (ret = opal_compress_base_open()) ) { - error = "opal_compress_base_open() failed"; + error = "opal_compress_base_open"; goto return_error; } if( OPAL_SUCCESS != (ret = opal_compress_base_select()) ) { - error = "opal_compress_base_select() failed"; + error = "opal_compress_base_select"; goto return_error; } #endif @@ -467,7 +467,7 @@ opal_init(int* pargc, char*** pargv) * otherwise the tools may hang or not clean up properly. */ if (OPAL_SUCCESS != (ret = opal_cr_init() ) ) { - error = "opal_cr_init() failed"; + error = "opal_cr_init"; goto return_error; }