1
1

Eliminate compiler warning; fix non-effective statement

This commit was SVN r799.
Этот коммит содержится в:
Jeff Squyres 2004-02-14 03:35:23 +00:00
родитель 86a98c20a6
Коммит 47075220c4

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

@ -72,7 +72,7 @@ int MPI_Group_excl(MPI_Group group, int n, int *ranks,
cnt=0;
for (proc = 0; proc < n; proc++) {
found=0;
for( i_excl=0 ; i_excl < n ; i_excl ) {
for( i_excl=0 ; i_excl < n ; ++i_excl ) {
excl_proc=ranks[i_excl];
/* check to see if this proc is within range */
if( ( 0 > excl_proc ) ||