From: Arnaud Giersch Date: Fri, 4 Oct 2013 19:23:43 +0000 (+0200) Subject: Fix the fix of commit 6d12558bf98bb09f8fc8c45527d740bf999f789c. X-Git-Tag: v3_9_90~40^2~7 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/0bffda160473d5f1b8e02097624671c40465ee0b Fix the fix of commit 6d12558bf98bb09f8fc8c45527d740bf999f789c. --- 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;