X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fposition.cpp;h=732a5e88cb217d53091e3cdae67d78731bf7ac63;hb=bcbab1937670ca39ddb0a216ff9a787e56b79b3a;hp=13fcdf247d65ba6d62570d05c3f72b368ff1bb57;hpb=79fa72f392343fb93c16c133dedc3dbdf795e746;p=stockfish 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)) << " ";