From 3b81d095b90fd725cab6baab4f3d08dab809b889 Mon Sep 17 00:00:00 2001 From: Frederic Suter Date: Wed, 8 Nov 2017 16:22:19 +0100 Subject: [PATCH] do as Clang says --- src/instr/instr_paje_events.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instr/instr_paje_events.cpp b/src/instr/instr_paje_events.cpp index 2a6ef0c5af..29b7e34e50 100644 --- a/src/instr/instr_paje_events.cpp +++ b/src/instr/instr_paje_events.cpp @@ -137,7 +137,7 @@ void StateEvent::print() stream << " " << value->getId(); if (TRACE_display_sizes()) - stream << " " << (extra_ != nullptr) ? extra_->display_size() : 0; + stream << " " << ((extra_ != nullptr) ? extra_->display_size() : 0); #if HAVE_SMPI if (xbt_cfg_get_boolean("smpi/trace-call-location")) { -- 2.20.1