summaryrefslogtreecommitdiff
path: root/town_gui.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
commit189ca7370762dca088a13d08ccb035e364758abb (patch)
treef77535f8809840126757131b192e611f6d912bdf /town_gui.c
parent7984a9a5007f4bdf1107cdf646c42e3e137f65cf (diff)
downloadopenttd-189ca7370762dca088a13d08ccb035e364758abb.tar.xz
(svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
Diffstat (limited to 'town_gui.c')
-rw-r--r--town_gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/town_gui.c b/town_gui.c
index 1c6c359a0..96922d357 100644
--- a/town_gui.c
+++ b/town_gui.c
@@ -395,7 +395,7 @@ static int CDECL TownPopSorter(const void *a, const void *b)
return r;
}
-static void MakeSortedTownList()
+static void MakeSortedTownList(void)
{
Town *t;
int n = 0;
@@ -509,7 +509,7 @@ static const WindowDesc _town_directory_desc = {
};
-void ShowTownDirectory()
+void ShowTownDirectory(void)
{
Window *w;