(svn r6881) -Fix r6874: uint > int to remove signedness warning MSVC (peter1138)
authorDarkvater
Sat, 21 Oct 2006 23:00:27 +0000
changeset 4910 a511ea0089a5
parent 4909 955f318a24cd
child 4911 bbaaba548c1c
(svn r6881) -Fix r6874: uint > int to remove signedness warning MSVC (peter1138)
station_cmd.c
--- a/station_cmd.c	Sat Oct 21 22:50:57 2006 +0000
+++ b/station_cmd.c	Sat Oct 21 23:00:27 2006 +0000
@@ -93,7 +93,7 @@
 static void MarkStationTilesDirty(const Station *st)
 {
 	TileIndex tile = st->train_tile;
-	uint w, h;
+	int w, h;
 
 	// XXX No station is recorded as 0, not INVALID_TILE...
 	if (tile == 0) return;