(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
1 changed files with 1 additions and 1 deletions

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++;
}