From a37e8ebe4328fa22844a88ee4a5e004200b55c97 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 3 Dec 2011 23:47:42 +0000 Subject: (svn r23417) -Fix: wrong argument to printf --- src/openttd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/openttd.cpp') diff --git a/src/openttd.cpp b/src/openttd.cpp index 520589b8e..2ec5cea65 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -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++; } -- cgit v1.2.3-54-g00ecf