X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fnotation.cpp;h=a57072ef1426d453d430dcd48e8bc803550acc1d;hp=4de10aceb3e00fe8aa4b0723658252114d449eef;hb=ffd6685f791f7e980cbada45ff66243c7b1aff76;hpb=c9dcda6ac488c0058ebd567e1f52e30b8cd0db20 diff --git a/src/notation.cpp b/src/notation.cpp index 4de10ace..a57072ef 100644 --- a/src/notation.cpp +++ b/src/notation.cpp @@ -212,10 +212,10 @@ static string score_to_string(Value v) { return s.str(); } -string pretty_pv(Position& pos, int depth, Value value, int64_t msecs, Move pv[]) { +string pretty_pv(Position& pos, int depth, Value value, uint64_t msecs, Move pv[]) { - const int64_t K = 1000; - const int64_t M = 1000000; + const uint64_t K = 1000; + const uint64_t M = 1000000; std::stack st; Move* m = pv;