X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=13923a7b901a75b44ed879a610bf90c1d2e63bdb;hp=99c00ebe4397e5a47677289c01936715224ebf84;hb=13b9e1e09811560d0120a8586c7418fb3640d626;hpb=553ead429d94b6314ff14aa3eb724f47987e5a52 diff --git a/src/misc.cpp b/src/misc.cpp index 99c00ebe..13923a7b 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -61,7 +61,7 @@ const string engine_info(bool to_uci) { /// Debug functions used mainly to collect run-time statistics -static uint64_t hits[2], means[2]; +static int64_t hits[2], means[2]; void dbg_hit_on(bool b) { ++hits[0]; if (b) ++hits[1]; } void dbg_hit_on_c(bool c, bool b) { if (c) dbg_hit_on(b); }