]> git.sesse.net Git - stockfish/blobdiff - src/san.cpp
Fix MinGW warnings
[stockfish] / src / san.cpp
index 662a698ca7d9fff5b6ae7a237a0c7b98fd9ce9ed..6a8fd137e4e69e3f19f7635a2a368e941b2fa48c 100644 (file)
@@ -325,8 +325,8 @@ const string line_to_san(const Position& pos, Move line[], int startColumn, bool
 const string pretty_pv(const Position& pos, int time, int depth,
                        Value score, ValueType type, Move pv[]) {
 
-  const uint64_t K = 1000;
-  const uint64_t M = 1000000;
+  const int64_t K = 1000;
+  const int64_t M = 1000000;
 
   std::stringstream s;