Skip to content

Commit 46a87ca

Browse files
committed
fix comment in ompi/mpi/c/group_{excl,incl}.c
no code change
1 parent b484784 commit 46a87ca

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

ompi/mpi/c/group_excl.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
* Copyright (c) 2006 University of Houston. All rights reserved.
1414
* Copyright (c) 2006-2009 Cisco Systems, Inc. All rights reserved.
1515
* Copyright (c) 2012-2013 Los Alamos Nat Security, LLC. All rights reserved.
16+
* Copyright (c) 2015 Research Organization for Information Science
17+
* and Technology (RIST). All rights reserved.
1618
* $COPYRIGHT$
1719
*
1820
* Additional copyrights may follow
@@ -73,7 +75,7 @@ int MPI_Group_excl(MPI_Group group, int n, const int ranks[],
7375
}
7476
}
7577

76-
} /* end if( MPI_CHECK_ARGS) */
78+
} /* end if( MPI_PARAM_CHECK ) */
7779

7880
if ( n == group_size ) {
7981
*new_group = MPI_GROUP_EMPTY;

ompi/mpi/c/group_incl.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
* Copyright (c) 2006-2009 Cisco Systems, Inc. All rights reserved.
1515
* Copyright (c) 2012-2013 Los Alamos National Security, LLC. All rights
1616
* reserved.
17+
* Copyright (c) 2015 Research Organization for Information Science
18+
* and Technology (RIST). All rights reserved.
1719
* $COPYRIGHT$
1820
*
1921
* Additional copyrights may follow
@@ -73,7 +75,7 @@ int MPI_Group_incl(MPI_Group group, int n, const int ranks[], MPI_Group *new_gro
7375
FUNC_NAME);
7476
}
7577
}
76-
} /* end if( MPI_CHECK_ARGS) */
78+
} /* end if( MPI_PARAM_CHECK ) */
7779

7880
if ( 0 == n ) {
7981
*new_group = MPI_GROUP_EMPTY;

0 commit comments

Comments
 (0)