aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-22 19:09:01 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-22 19:09:01 +0000
commite74e00155cd9ce837c3aa18bc817b9b0d065a1dc (patch)
tree35325c1d5dc1112025296f09432222daefa4f23f
parent09a7be55558e03d258389e47df3958c771cab1fa (diff)
fix warning about incomplete function prototype
svn path=/trunk/externals/miXed/; revision=16963
-rw-r--r--cyclone/hammer/Decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cyclone/hammer/Decode.c b/cyclone/hammer/Decode.c
index ccf6d0b..b01a82f 100644
--- a/cyclone/hammer/Decode.c
+++ b/cyclone/hammer/Decode.c
@@ -113,7 +113,7 @@ void Decode_setup(void)
fitter_setup(Decode_class, 0);
}
-void decode_setup()
+void decode_setup(void)
{
Decode_setup();
}