From c126fdf651057c849b4614da3fdd76a64d9c0036 Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Tue, 25 Sep 2012 14:56:36 +0200 Subject: [PATCH 1/1] MPI_Address didn't return MPI_SUCCESS on success --- src/smpi/smpi_pmpi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/smpi/smpi_pmpi.c b/src/smpi/smpi_pmpi.c index 16fccc06d1..d730222bf8 100644 --- a/src/smpi/smpi_pmpi.c +++ b/src/smpi/smpi_pmpi.c @@ -125,6 +125,7 @@ int PMPI_Address(void *location, MPI_Aint * address) retval = MPI_ERR_ARG; } else { *address = (MPI_Aint) location; + retval = MPI_SUCCESS; } smpi_bench_begin(); return retval; -- 2.20.1