From 0bffda160473d5f1b8e02097624671c40465ee0b Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Fri, 4 Oct 2013 21:23:43 +0200 Subject: [PATCH 1/1] Fix the fix of commit 6d12558bf98bb09f8fc8c45527d740bf999f789c. --- src/smpi/smpi_pmpi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpi/smpi_pmpi.c b/src/smpi/smpi_pmpi.c index de11ee9416..e7b5d440c1 100644 --- a/src/smpi/smpi_pmpi.c +++ b/src/smpi/smpi_pmpi.c @@ -1374,7 +1374,7 @@ int PMPI_Test(MPI_Request * request, int *flag, MPI_Status * status) int retval = 0; smpi_bench_end(); - if (*request == MPI_REQUEST_NULL || flag == NULL) { + if (request == NULL || flag == NULL) { retval = MPI_ERR_ARG; } else if (*request == MPI_REQUEST_NULL) { *flag= TRUE; -- 2.20.1