1
1

Ignore another param in the IN_PLACE case

This commit was SVN r7348.
Этот коммит содержится в:
Jeff Squyres 2005-09-13 19:15:01 +00:00
родитель c89e8c3712
Коммит 15f5294da4

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

@ -52,8 +52,8 @@ int MPI_Allgather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
err = MPI_ERR_COUNT;
} else if (MPI_IN_PLACE == recvbuf) {
return OMPI_ERRHANDLER_INVOKE(comm, MPI_ERR_ARG, FUNC_NAME);
} else {
OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
} else if (MPI_IN_PLACE != sendbuf) {
OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
}
OMPI_ERRHANDLER_CHECK(err, comm, err, FUNC_NAME);
}