# HG changeset patch # User tron # Date 1104790356 0 # Node ID 8beeebc0f1bd3c7ebeeb4ec60b4dd78703d7f980 # Parent ce8cb2c0957827b51104ad3a409f13ec08512387 (svn r1359) Fix typos in last commit diff -r ce8cb2c09578 -r 8beeebc0f1bd roadveh_gui.c --- a/roadveh_gui.c Mon Jan 03 22:07:40 2005 +0000 +++ b/roadveh_gui.c Mon Jan 03 22:12:36 2005 +0000 @@ -513,7 +513,7 @@ /* locate the depot struct */ for (d = _depots; d->xy != (TileIndex)tile; d++) { - assert(d < endof(_depots); + assert(d < endof(_depots)); } SetDParam(0, d->town_index); diff -r ce8cb2c09578 -r 8beeebc0f1bd ship_gui.c --- a/ship_gui.c Mon Jan 03 22:07:40 2005 +0000 +++ b/ship_gui.c Mon Jan 03 22:12:36 2005 +0000 @@ -647,7 +647,7 @@ /* locate the depot struct */ for (d = _depots; d->xy != (TileIndex)tile; d++) { - assert(d < endof(_depots); + assert(d < endof(_depots)); } SetDParam(0, d->town_index); diff -r ce8cb2c09578 -r 8beeebc0f1bd train_gui.c --- a/train_gui.c Mon Jan 03 22:07:40 2005 +0000 +++ b/train_gui.c Mon Jan 03 22:12:36 2005 +0000 @@ -334,7 +334,7 @@ /* locate the depot struct */ for (d = _depots; d->xy != (TileIndex)tile; d++) { - assert(d < endof(_depots); + assert(d < endof(_depots)); } SetDParam(0, d->town_index);