From 24c018fa2290995b945b7103b45f102782609d64 Mon Sep 17 00:00:00 2001 From: "Juan M. Bello-Rivas" Date: Wed, 3 Jul 2019 11:33:22 -0700 Subject: [PATCH] Add missing argument name. Signed-off-by: Juan M. Bello-Rivas --- ompi/include/mpi.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/include/mpi.h.in b/ompi/include/mpi.h.in index bf916920d0..ef371c9237 100644 --- a/ompi/include/mpi.h.in +++ b/ompi/include/mpi.h.in @@ -2250,7 +2250,7 @@ OMPI_DECLSPEC int PMPI_Reduce(const void *sendbuf, void *recvbuf, int count, OMPI_DECLSPEC int PMPI_Ireduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm, MPI_Request *request); OMPI_DECLSPEC int PMPI_Reduce_local(const void *inbuf, void *inoutbuf, int count, - MPI_Datatype datatype, MPI_Op); + MPI_Datatype datatype, MPI_Op op); OMPI_DECLSPEC int PMPI_Reduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[], MPI_Datatype datatype, MPI_Op op, MPI_Comm comm); OMPI_DECLSPEC int PMPI_Ireduce_scatter(const void *sendbuf, void *recvbuf, const int recvcounts[],