From 84862a5ed2d967524594c4fee1369b3a91c490e3 Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Thu, 2 Aug 2018 17:30:53 +0200 Subject: [PATCH] [SMPI/INSTR] Replace ! with 'not' ... --- src/smpi/internals/instr_smpi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpi/internals/instr_smpi.cpp b/src/smpi/internals/instr_smpi.cpp index 9bacf19aa7..3f7fcd3fed 100644 --- a/src/smpi/internals/instr_smpi.cpp +++ b/src/smpi/internals/instr_smpi.cpp @@ -296,7 +296,7 @@ void TRACE_smpi_send_process_data_out(int rank) void TRACE_smpi_process_change_host(int rank, sg_host_t new_host) { - if (!TRACE_smpi_is_enabled()) return; + if (not TRACE_smpi_is_enabled()) return; /** The key is (most likely) used to match the events in the trace */ static long long int counter = 0; -- 2.20.1