Fix MinGW warnings

I finally got SF to compile under MinGW (after adding pthread libraries)
and here are the fixed warnings.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2010-11-01 11:44:46 +01:00
parent 19cf779629
commit d607febb38
3 changed files with 12 additions and 9 deletions

View 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;