1
1

fix compare_nodes bug in alps ras component

There was an obvious bug in the alps/ras component compare_nodes method
which resulted in the function always evaluating the nodes
as being equivalent.
Этот коммит содержится в:
Howard Pritchard 2014-11-18 11:15:02 -07:00
родитель ff362c16ce
Коммит 4df3447d96

Просмотреть файл

@ -377,7 +377,7 @@ static int compare_nodes (opal_list_item_t **a, opal_list_item_t **b)
}
ldptr = &launchb;
if (!orte_get_attribute(&nodea->attributes, ORTE_NODE_LAUNCH_ID, (void**)&ldptr, OPAL_INT32)) {
if (!orte_get_attribute(&nodeb->attributes, ORTE_NODE_LAUNCH_ID, (void**)&ldptr, OPAL_INT32)) {
return 0;
}