1
1

Fix warning - thanks to Paul Hargrove for reporting it

cmr=v1.7.4:reviewer=ompi-gk1.7

This commit was SVN r30548.
Этот коммит содержится в:
Ralph Castain 2014-02-03 23:51:45 +00:00
родитель d9786c42f7
Коммит e43589ed84

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

@ -967,10 +967,9 @@ int orte_rmaps_base_compute_bindings(orte_job_t *jdata)
}
}
return rc;
} else {
ORTE_ERROR_LOG(ORTE_ERR_NOT_SUPPORTED);
return ORTE_ERR_NOT_SUPPORTED;
}
return ORTE_SUCCESS;
/* if we get here, then the binding policy isn't supported */
ORTE_ERROR_LOG(ORTE_ERR_NOT_SUPPORTED);
return ORTE_ERR_NOT_SUPPORTED;
}