From bfae49aeb2affaf239f7e9b04b6b7e226830e962 Mon Sep 17 00:00:00 2001 From: smatz Date: Sat, 15 Mar 2008 13:21:31 +0000 Subject: (svn r12368) -Codechange: use explicit body for loops and conditions and remove -Wno-empty-body from the configure script --- src/newgrf_station.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/newgrf_station.cpp') diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp index 51fef9d35..aefef9ed1 100644 --- a/src/newgrf_station.cpp +++ b/src/newgrf_station.cpp @@ -105,7 +105,7 @@ StringID GetStationClassName(StationClassID sclass) uint GetNumStationClasses() { uint i; - for (i = 0; i < STAT_CLASS_MAX && _station_classes[i].id != 0; i++); + for (i = 0; i < STAT_CLASS_MAX && _station_classes[i].id != 0; i++) {} return i; } @@ -724,7 +724,7 @@ void DeallocateSpecFromStation(Station* st, byte specindex) /* If this was the highest spec index, reallocate */ if (specindex == st->num_specs - 1) { - for (; st->speclist[st->num_specs - 1].grfid == 0 && st->num_specs > 1; st->num_specs--); + for (; st->speclist[st->num_specs - 1].grfid == 0 && st->num_specs > 1; st->num_specs--) {} if (st->num_specs > 1) { st->speclist = ReallocT(st->speclist, st->num_specs); -- cgit v1.2.3-54-g00ecf