]> git.sesse.net Git - stockfish/commitdiff
Fix a warning in GCC for Windows
authorStéphane Nicolet <cassio@free.fr>
Tue, 6 Mar 2018 21:11:45 +0000 (22:11 +0100)
committerStéphane Nicolet <cassio@free.fr>
Tue, 6 Mar 2018 21:11:45 +0000 (22:11 +0100)
No functional change

src/search.cpp

index 515cc6ceae163e234b9158a8ef25322c1bb44d72..30f77bd9af80c10155af469acf9afce9ff86304e 100644 (file)
@@ -761,6 +761,7 @@ namespace {
         Value rbeta = std::min(beta + 200, VALUE_INFINITE);
         MovePicker mp(pos, ttMove, rbeta - ss->staticEval, &thisThread->captureHistory);
         int probCutCount = 0;
+
         while (  (move = mp.next_move()) != MOVE_NONE
                && probCutCount < depth / ONE_PLY - 3)
             if (pos.legal(move))
@@ -777,7 +778,7 @@ namespace {
                 // Perform a preliminary search at depth 1 to verify that the move holds.
                 // We will only do this search if the depth is not 5, thus avoiding two
                 // searches at depth 1 in a row.
-                if (depth > 5 * ONE_PLY)
+                if (depth != 5 * ONE_PLY)
                     value = -search<NonPV>(pos, ss+1, -rbeta, -rbeta+1, ONE_PLY, !cutNode, true);
 
                 // If the first search was skipped or was performed and held, perform