From 65524120279a82f8a3b97ccbe2ea7b8f0e454d58 Mon Sep 17 00:00:00 2001 From: Dave Hooper Date: Wed, 17 Feb 2010 00:58:54 +0000 Subject: Fix yellow (bad function declaration) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24714 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libatrac/atrac3.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'apps/codecs') diff --git a/apps/codecs/libatrac/atrac3.c b/apps/codecs/libatrac/atrac3.c index 3555f74cfb..fa0400a408 100644 --- a/apps/codecs/libatrac/atrac3.c +++ b/apps/codecs/libatrac/atrac3.c @@ -296,7 +296,8 @@ static int decode_bytes(const uint8_t* inbuffer, uint8_t* out, int bytes){ } -static void init_atrac3_transforms() { +static void init_atrac3_transforms(void) +{ int32_t s; int i; @@ -311,7 +312,7 @@ static void init_atrac3_transforms() { qmf_window[i] = s; qmf_window[47 - i] = s; } - } +} /** -- cgit v1.2.3