(svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile

This commit is contained in:
tron
2005-01-22 20:23:18 +00:00
parent 14451419c6
commit 94d5aeabb2
81 changed files with 612 additions and 590 deletions

View File

@@ -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;
}