summaryrefslogtreecommitdiff
path: root/aircraft_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-22 20:23:18 +0000
committertron <tron@openttd.org>2005-01-22 20:23:18 +0000
commit94d5aeabb217cb08acf1225342c28bb0ac44f676 (patch)
treef77535f8809840126757131b192e611f6d912bdf /aircraft_cmd.c
parent14451419c6c6b82ddb2204b43595fcf9acee91dc (diff)
downloadopenttd-94d5aeabb217cb08acf1225342c28bb0ac44f676.tar.xz
(svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
Diffstat (limited to 'aircraft_cmd.c')
-rw-r--r--aircraft_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/aircraft_cmd.c b/aircraft_cmd.c
index 58168db9b..0724c81f8 100644
--- a/aircraft_cmd.c
+++ b/aircraft_cmd.c
@@ -537,7 +537,7 @@ void OnNewDay_Aircraft(Vehicle *v)
InvalidateWindowClasses(WC_AIRCRAFT_LIST);
}
-void AircraftYearlyLoop()
+void AircraftYearlyLoop(void)
{
Vehicle *v;
@@ -1875,7 +1875,7 @@ void UpdateOilRig( void )
}
// need to be called to load aircraft from old version
-void UpdateOldAircraft()
+void UpdateOldAircraft(void)
{
Station *st;
Vehicle *v_oldstyle;