From: Christian Heinrich Date: Thu, 2 Aug 2018 15:30:53 +0000 (+0200) Subject: [SMPI/INSTR] Replace ! with 'not' ... X-Git-Tag: v3_21~342 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/84862a5ed2d967524594c4fee1369b3a91c490e3 [SMPI/INSTR] Replace ! with 'not' ... --- 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;