1
1
This commit was SVN r5375.
Этот коммит содержится в:
Tim Woodall 2005-04-15 13:42:14 +00:00
родитель 744e924d76
Коммит 020ecd2360

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

@ -124,8 +124,8 @@ static int orte_rds_hostfile_parse_line(int token, ompi_list_t* existing, ompi_l
OBJ_RELEASE(node); OBJ_RELEASE(node);
return OMPI_ERROR; return OMPI_ERROR;
} }
/* Only take this update if it puts us > node_slots */ /* Only take this update if it puts us >= node_slots */
if (((size_t) rc) > node->node_slots) { if (((size_t) rc) >= node->node_slots) {
if (node->node_slots_max != (size_t)rc) { if (node->node_slots_max != (size_t)rc) {
node->node_slots_max = rc; node->node_slots_max = rc;
update++; update++;