From 768c291376d7b5af94ee026c168b117bc27d9ad1 Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Wed, 8 Apr 2015 20:15:58 +0200 Subject: [PATCH] SMPI: Fixed wrong value for MPI_ERR_LASTCODE. This patch was submitted by Samuel Thibault. Thanks! --- include/smpi/smpi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/smpi/smpi.h b/include/smpi/smpi.h index be7722065c..73c7525ba5 100644 --- a/include/smpi/smpi.h +++ b/include/smpi/smpi.h @@ -148,7 +148,7 @@ SG_BEGIN_DECL() #define MPI_NULL_DELETE_FN NULL #define MPI_APPNUM 0 #define MPI_LASTUSEDCODE MPI_SUCCESS -#define MPI_ERR_LASTCODE MPI_SUCCESS +#define MPI_ERR_LASTCODE 74 #define MPI_CXX_BOOL MPI_DATATYPE_NULL #define MPI_CXX_FLOAT_COMPLEX MPI_DATATYPE_NULL -- 2.20.1