]> git.sesse.net Git - stockfish/blobdiff - src/search.cpp
Misc coding style fixes
[stockfish] / src / search.cpp
index aafe82a91b942240ee95f6facc1d96295bff3415..d59edbaeefcbf4be8ba40ea965156a21e0bf387a 100644 (file)
@@ -85,7 +85,7 @@ namespace {
 
   // History and stats update bonus, based on depth
   int stat_bonus(Depth depth) {
 
   // History and stats update bonus, based on depth
   int stat_bonus(Depth depth) {
-    int d = depth / ONE_PLY ;
+    int d = depth / ONE_PLY;
     return d > 17 ? 0 : d * d + 2 * d - 2;
   }
 
     return d > 17 ? 0 : d * d + 2 * d - 2;
   }