X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.cpp;h=732a5e88cb217d53091e3cdae67d78731bf7ac63;hp=13fcdf247d65ba6d62570d05c3f72b368ff1bb57;hb=fc0733087a035b9e86e17f73b42215b583392502;hpb=42a20920e5259dbe3efd9002fbc7176a9f071636 diff --git a/src/position.cpp b/src/position.cpp index 13fcdf24..732a5e88 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -122,7 +122,7 @@ std::ostream& operator<<(std::ostream& os, const Position& pos) { } os << "\nFen: " << pos.fen() << "\nKey: " << std::hex << std::uppercase - << std::setfill('0') << std::setw(16) << pos.st->key << "\nCheckers: "; + << std::setfill('0') << std::setw(16) << pos.st->key << std::dec << "\nCheckers: "; for (Bitboard b = pos.checkers(); b; ) os << UCI::format_square(pop_lsb(&b)) << " ";