From 43abd53b1956920ef6927ece50c9faa77d6e20cc Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Sat, 11 Jan 2020 21:28:25 +0000 Subject: [PATCH] Clarify limits of the if statement --- pcbnew/connectivity/connectivity_algo.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcbnew/connectivity/connectivity_algo.cpp b/pcbnew/connectivity/connectivity_algo.cpp index 87d33776fa..989df45585 100644 --- a/pcbnew/connectivity/connectivity_algo.cpp +++ b/pcbnew/connectivity/connectivity_algo.cpp @@ -482,8 +482,10 @@ void CN_CONNECTIVITY_ALGO::propagateConnections( BOARD_COMMIT* aCommit ) } if( n_changed ) + { wxLogTrace( "CN", "Cluster %p : net : %d %s\n", cluster.get(), cluster->OriginNet(), (const char*) cluster->OriginNetName().c_str() ); + } else wxLogTrace( "CN", "Cluster %p : nothing to propagate\n", cluster.get() ); }