From b0b5d9139056181cbfa4898a2cd559b81f7bd8ca Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Thu, 28 Jun 2018 09:28:02 -0700 Subject: [PATCH] pcbnew: fix OpenMP synch issue Fixes: lp:1778454 * https://bugs.launchpad.net/kicad/+bug/1778454 --- pcbnew/connectivity_algo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/connectivity_algo.cpp b/pcbnew/connectivity_algo.cpp index b004e86a06..97122df731 100644 --- a/pcbnew/connectivity_algo.cpp +++ b/pcbnew/connectivity_algo.cpp @@ -379,7 +379,7 @@ void CN_CONNECTIVITY_ALGO::searchConnections() #endif #ifdef USE_OPENMP - #pragma omp for + #pragma omp parallel for #endif for( int i = 0; i < m_zoneList.Size(); i++ ) {