(svn r1359) Fix typos in last commit
authortron
Mon, 03 Jan 2005 22:12:36 +0000
changeset 878 8f4f2ef6f674
parent 877 a0849f41e748
child 879 2116f8d15ea2
(svn r1359) Fix typos in last commit
roadveh_gui.c
ship_gui.c
train_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);
--- 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);
--- 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);