From bd83de0b7f1de624d87a115daa6070a975d18989 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Sat, 27 Apr 2013 00:12:10 +0000 Subject: [PATCH] Fix an obvious typo - it was set to default to true when instantiated. This commit was SVN r28407. --- ompi/runtime/ompi_mpi_params.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/runtime/ompi_mpi_params.c b/ompi/runtime/ompi_mpi_params.c index f6f956fbad..b5118dd456 100644 --- a/ompi/runtime/ompi_mpi_params.c +++ b/ompi/runtime/ompi_mpi_params.c @@ -81,7 +81,7 @@ int ompi_mpi_register_params(void) /* Whether we want MPI API function parameter checking or not */ - ompi_mpi_param_check = false; + ompi_mpi_param_check = true; (void) mca_base_var_register("ompi", "mpi", NULL, "param_check", "Whether you want MPI API parameters checked at run-time or not. Possible values are 0 (no checking) and 1 (perform checking at run-time)", MCA_BASE_VAR_TYPE_BOOL, NULL, 0, 0,