From 46a87cabf080d132153e4abe5db8cf37b0a7000f Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Tue, 21 Jul 2015 10:29:55 +0900 Subject: [PATCH] fix comment in ompi/mpi/c/group_{excl,incl}.c no code change --- ompi/mpi/c/group_excl.c | 4 +++- ompi/mpi/c/group_incl.c | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ompi/mpi/c/group_excl.c b/ompi/mpi/c/group_excl.c index 6caa4ffced..2931c0c839 100644 --- a/ompi/mpi/c/group_excl.c +++ b/ompi/mpi/c/group_excl.c @@ -13,6 +13,8 @@ * Copyright (c) 2006 University of Houston. All rights reserved. * Copyright (c) 2006-2009 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2012-2013 Los Alamos Nat Security, LLC. All rights reserved. + * Copyright (c) 2015 Research Organization for Information Science + * and Technology (RIST). All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow @@ -73,7 +75,7 @@ int MPI_Group_excl(MPI_Group group, int n, const int ranks[], } } - } /* end if( MPI_CHECK_ARGS) */ + } /* end if( MPI_PARAM_CHECK ) */ if ( n == group_size ) { *new_group = MPI_GROUP_EMPTY; diff --git a/ompi/mpi/c/group_incl.c b/ompi/mpi/c/group_incl.c index fc7bd80fc4..4532daa254 100644 --- a/ompi/mpi/c/group_incl.c +++ b/ompi/mpi/c/group_incl.c @@ -14,6 +14,8 @@ * Copyright (c) 2006-2009 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2012-2013 Los Alamos National Security, LLC. All rights * reserved. + * Copyright (c) 2015 Research Organization for Information Science + * and Technology (RIST). All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow @@ -73,7 +75,7 @@ int MPI_Group_incl(MPI_Group group, int n, const int ranks[], MPI_Group *new_gro FUNC_NAME); } } - } /* end if( MPI_CHECK_ARGS) */ + } /* end if( MPI_PARAM_CHECK ) */ if ( 0 == n ) { *new_group = MPI_GROUP_EMPTY;