1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-27 00:19:09 +00:00

(svn r23417) -Fix: wrong argument to printf

This commit is contained in:
rubidium
2011-12-03 23:47:42 +00:00
parent 0e5e8fff12
commit a37e8ebe43

View File

@@ -1126,7 +1126,7 @@ static void CheckCaches()
uint i = 0;
FOR_ALL_COMPANIES(c) {
if (MemCmpT(old_infrastructure.Get(i), &c->infrastructure) != 0) {
DEBUG(desync, 2, "infrastructure cache mismatch: company %i", c->index);
DEBUG(desync, 2, "infrastructure cache mismatch: company %i", (int)c->index);
}
i++;
}