summaryrefslogtreecommitdiff
path: root/oldloader.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 /oldloader.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 'oldloader.c')
-rw-r--r--oldloader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/oldloader.c b/oldloader.c
index d96ab3420..b8b9fb155 100644
--- a/oldloader.c
+++ b/oldloader.c
@@ -525,7 +525,7 @@ typedef struct LoadSavegameState {
static LoadSavegameState *_cur_state;
-static byte GetSavegameByteFromBuffer()
+static byte GetSavegameByteFromBuffer(void)
{
LoadSavegameState *lss = _cur_state;
@@ -544,7 +544,7 @@ static byte GetSavegameByteFromBuffer()
return *lss->buffer_cur++;
}
-static byte DecodeSavegameByte()
+static byte DecodeSavegameByte(void)
{
LoadSavegameState *lss = _cur_state;
int8 x;