From 189ca7370762dca088a13d08ccb035e364758abb Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 22 Jan 2005 20:23:18 +0000 Subject: (svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile --- rail_cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rail_cmd.c') diff --git a/rail_cmd.c b/rail_cmd.c index f2c344e0f..b9256b961 100644 --- a/rail_cmd.c +++ b/rail_cmd.c @@ -777,7 +777,7 @@ static void DoDeleteWaypoint(Waypoint *cp) } // delete waypoints after a while -void WaypointsDailyLoop() +void WaypointsDailyLoop(void) { Waypoint *cp; for(cp = _waypoints; cp != endof(_waypoints); cp++) { @@ -2276,7 +2276,7 @@ static uint32 VehicleEnter_Track(Vehicle *v, uint tile, int x, int y) return 0; } -void InitializeRail() +void InitializeRail(void) { _last_built_train_depot_tile = 0; } -- cgit v1.2.3-54-g00ecf