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; }