summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-11-30 11:53:52 +0000
committerJens Arnold <amiconn@rockbox.org>2008-11-30 11:53:52 +0000
commitb153133682fe33cdd38c15cb500709a341288a68 (patch)
tree9be65bf22e807aec71be5d8a9374dcad5c6248c5
parentfbb80b00dbc231b8209c639bc6c2a17f9db81980 (diff)
downloadrockbox-b153133682fe33cdd38c15cb500709a341288a68.tar.gz
rockbox-b153133682fe33cdd38c15cb500709a341288a68.zip
Remove extraneous semicolons, and fix a comment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19267 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/ape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/ape.c b/apps/codecs/ape.c
index 97f9ee6639..0419a6f6bd 100644
--- a/apps/codecs/ape.c
+++ b/apps/codecs/ape.c
@@ -45,7 +45,7 @@ static uint32_t seektablebuf[MAX_SEEKPOINTS];
45 45
46#define INPUT_CHUNKSIZE (32*1024) 46#define INPUT_CHUNKSIZE (32*1024)
47 47
48/* 4608*4 = 18432 bytes per channel */ 48/* 1024*4 = 4096 bytes per channel */
49static int32_t decoded0[BLOCKS_PER_LOOP] IBSS_ATTR; 49static int32_t decoded0[BLOCKS_PER_LOOP] IBSS_ATTR;
50static int32_t decoded1[BLOCKS_PER_LOOP] IBSS_ATTR; 50static int32_t decoded1[BLOCKS_PER_LOOP] IBSS_ATTR;
51 51