1
1

Fix compile error in the heterogeneous case.

We've been forcing C99 compiler compliance for a while now, so use C99
syntax to keep the #if code tidy.

This commit was SVN r29101.
Этот коммит содержится в:
Jeff Squyres 2013-08-31 12:56:08 +00:00
родитель 16a1166884
Коммит f6619f8e9e

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

@ -114,7 +114,7 @@ mca_pml_cm_add_procs(struct ompi_proc_t** procs, size_t nprocs)
int ret;
#if OPAL_ENABLE_HETEROGENEOUS_SUPPORT
for (i = 0 ; i < nprocs ; ++i) {
for (size_t i = 0 ; i < nprocs ; ++i) {
if (procs[i]->proc_arch != ompi_proc_local()->proc_arch) {
return OMPI_ERR_NOT_SUPPORTED;
}