[mpich] MPICH primary repository branch, master, updated. v3.1-153-g59afcee
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via 59afcee791229fa9293ac1aba1d1b2fd02537b30 (commit) from d7de532de5e6a24217fe34005552c165f1f8ee2c (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/59afcee791229fa9293ac1aba1d1b2fd02... commit 59afcee791229fa9293ac1aba1d1b2fd02537b30 Author: Ken Raffenetti <[email protected]> Date: Mon Apr 14 15:53:32 2014 -0500 correct validation of MPI_Info handle MPIR_ERRTEST_ARGNULL is incorrect for validating an MPI_Info handle, since MPI_INFO_NULL is not defined as 0. This updates the test in MPI_Comm_set_info to match the one in MPI_Win_set_info. Patch originally from [email protected] diff --git a/src/mpi/comm/comm_set_info.c b/src/mpi/comm/comm_set_info.c index 5afbc61..18df251 100644 --- a/src/mpi/comm/comm_set_info.c +++ b/src/mpi/comm/comm_set_info.c @@ -109,7 +109,7 @@ int MPI_Comm_set_info(MPI_Comm comm, MPI_Info info) { MPID_BEGIN_ERROR_CHECKS; { - MPIR_ERRTEST_ARGNULL(info, "info", mpi_errno); + MPIR_ERRTEST_INFO(info, mpi_errno); } MPID_END_ERROR_CHECKS; } ----------------------------------------------------------------------- Summary of changes: src/mpi/comm/comm_set_info.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org