# HG changeset patch # User Darkvater # Date 1161471627 0 # Node ID ed97a9239b11c3e12ca306c7caa8a85288d5c4b3 # Parent ef77bf81545cb4c13be6dcdb969d32505261d76a (svn r6881) -Fix r6874: uint > int to remove signedness warning MSVC (peter1138) diff -r ef77bf81545c -r ed97a9239b11 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;