summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDave Hooper <dave@beermex.com>2010-02-17 00:58:54 +0000
committerDave Hooper <dave@beermex.com>2010-02-17 00:58:54 +0000
commit65524120279a82f8a3b97ccbe2ea7b8f0e454d58 (patch)
tree98df878a82c386a3d8eed6b28972c25a57c03fee /apps
parenta5ca79edb58a5caac82ce0fb39051f1727b07e9e (diff)
downloadrockbox-65524120279a82f8a3b97ccbe2ea7b8f0e454d58.tar.gz
rockbox-65524120279a82f8a3b97ccbe2ea7b8f0e454d58.zip
Fix yellow (bad function declaration)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24714 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/libatrac/atrac3.c5
1 files changed, 3 insertions, 2 deletions
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){
296} 296}
297 297
298 298
299static void init_atrac3_transforms() { 299static void init_atrac3_transforms(void)
300{
300 int32_t s; 301 int32_t s;
301 int i; 302 int i;
302 303
@@ -311,7 +312,7 @@ static void init_atrac3_transforms() {
311 qmf_window[i] = s; 312 qmf_window[i] = s;
312 qmf_window[47 - i] = s; 313 qmf_window[47 - i] = s;
313 } 314 }
314 } 315}
315 316
316 317
317/** 318/**