From 748722f1738549a84e1b1c7e8f347b649213075d Mon Sep 17 00:00:00 2001 From: Augustin Degomme Date: Mon, 29 Sep 2014 10:22:23 +0200 Subject: [PATCH 1/1] remove unwanted ! --- src/smpi/smpi_global.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpi/smpi_global.c b/src/smpi/smpi_global.c index ca28534b88..03d06e1c30 100644 --- a/src/smpi/smpi_global.c +++ b/src/smpi/smpi_global.c @@ -169,7 +169,7 @@ int smpi_process_initialized(void) void smpi_process_mark_as_initialized(void) { int index = smpi_process_index(); - if ((index != MPI_UNDEFINED) && (!process_data[index_to_process_data[index]]->state != SMPI_FINALIZED)) + if ((index != MPI_UNDEFINED) && (process_data[index_to_process_data[index]]->state != SMPI_FINALIZED)) process_data[index_to_process_data[index]]->state = SMPI_INITIALIZED; } -- 2.20.1