]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Fix compile on icc
[stockfish] / src / search.cpp
index 4aecad1cca7981096828d15b3217d6564330f611..cbc5038ab901889e3e875c901f07309481501349 100644 (file)
@@ -902,7 +902,7 @@ moves_loop: // When in check and at SpNode search starts from here
           // Futility pruning: parent node
           if (predictedDepth < 7 * ONE_PLY)
           {
-              futilityValue =  ss->staticEval + futility_margin(predictedDepth) + 256;
+              futilityValue = ss->staticEval + futility_margin(predictedDepth) + 256;
 
               if (futilityValue <= alpha)
               {