From 7dabc7b3abbcbd7439456d0c2568009e7b8b790e Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Tue, 17 Feb 2015 14:28:17 +0900 Subject: [PATCH] bml/r2: fix a typo reported by Coverity as CID 1270228 --- ompi/mca/bml/r2/bml_r2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ompi/mca/bml/r2/bml_r2.c b/ompi/mca/bml/r2/bml_r2.c index 57661e016b..ca3d2acfaa 100644 --- a/ompi/mca/bml/r2/bml_r2.c +++ b/ompi/mca/bml/r2/bml_r2.c @@ -258,13 +258,13 @@ static int mca_bml_r2_add_procs( size_t nprocs, if( (btl_flags & MCA_BTL_FLAGS_PUT) && (NULL == btl->btl_put) ) { opal_output(0, "mca_bml_r2_add_procs: The PUT flag is specified for" " the %s BTL without any PUT function attached. Discard the flag !", - bml_btl->btl->btl_component->btl_version.mca_component_name); + btl->btl_component->btl_version.mca_component_name); btl_flags ^= MCA_BTL_FLAGS_PUT; } if( (btl_flags & MCA_BTL_FLAGS_GET) && (NULL == btl->btl_get) ) { opal_output(0, "mca_bml_r2_add_procs: The GET flag is specified for" " the %s BTL without any GET function attached. Discard the flag !", - bml_btl->btl->btl_component->btl_version.mca_component_name); + btl->btl_component->btl_version.mca_component_name); btl_flags ^= MCA_BTL_FLAGS_GET; }