1
1

Slightly simplify the code and remove a compiler warning.

This commit was SVN r18596.
Этот коммит содержится в:
Jeff Squyres 2008-06-05 19:08:08 +00:00
родитель b1999bbba3
Коммит f0d465c30a

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

@ -1944,12 +1944,11 @@ btl_openib_component_init(int *num_btl_modules,
#if OMPI_HAVE_THREADS
mca_btl_openib_component.async_thread = 0;
#endif
distance = dev_sorted[0].distance;
for (i = 0; i < num_devs && (-1 == mca_btl_openib_component.ib_max_btls ||
mca_btl_openib_component.ib_num_btls <
mca_btl_openib_component.ib_max_btls); i++) {
if (0 == mca_btl_openib_component.ib_num_btls) {
distance = dev_sorted[i].distance;
} else if (distance != dev_sorted[i].distance) {
if (distance != dev_sorted[i].distance) {
break;
}