changeset 7814:91405b7333f9 draft

(svn r11364) -Fix (r11363): compilation broken
author glx <glx@openttd.org>
date Wed, 31 Oct 2007 18:53:49 +0000
parents abee2c8e51ed
children a7db3577709b
files src/station_cmd.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -226,7 +226,7 @@
 
 #define M(x) ((x) - STR_SV_STNAME)
 
-enum StationNaming = {
+enum StationNaming {
 	STATIONNAMING_RAIL = 0,
 	STATIONNAMING_ROAD = 0,
 	STATIONNAMING_AIRPORT,
@@ -234,7 +234,7 @@
 	STATIONNAMING_DOCK,
 	STATIONNAMING_BUOY,
 	STATIONNAMING_HELIPORT,
-}
+};
 
 static bool GenerateStationName(Station *st, TileIndex tile, int flag)
 {