]> git.sesse.net Git - stockfish/blobdiff - src/pawns.cpp
Misc coding style fixes
[stockfish] / src / pawns.cpp
index dab280cce2daea987ddbf9da0f00541dd70f26f5..0f6430b90f1616c127a397cf5b832a809c8b88b8 100644 (file)
@@ -105,7 +105,7 @@ namespace {
     Score score = SCORE_ZERO;
     const Square* pl = pos.squares<PAWN>(Us);
 
-    Bitboard ourPawns   = pos.pieces(Us  , PAWN);
+    Bitboard ourPawns   = pos.pieces(  Us, PAWN);
     Bitboard theirPawns = pos.pieces(Them, PAWN);
 
     e->passedPawns[Us]   = e->pawnAttacksSpan[Us] = 0;