summaryrefslogtreecommitdiff
path: root/apps/mp3data.c
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2011-12-03 17:11:54 +0000
committerThomas Jarosch <tomj@simonv.com>2011-12-03 17:11:54 +0000
commit1d81683e0896e8b82d133fb0e577b6c79263ff39 (patch)
treeda0a1290cd5403c76b06a925fe7326105cba95b8 /apps/mp3data.c
parenteea3c1cd94a2686bbe3a18cc8330a0030e05b4e2 (diff)
Fix red: Mark variable as unused the rockbox way
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31125 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/mp3data.c')
-rw-r--r--apps/mp3data.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/mp3data.c b/apps/mp3data.c
index 4944e02f48..13ff0a87a7 100644
--- a/apps/mp3data.c
+++ b/apps/mp3data.c
@@ -379,8 +379,10 @@ static size_t mem_pos;
static int mem_cnt;
static int mem_maxlen;
-static int mem_getbyte(int /*dummy*/, unsigned char *c)
+static int mem_getbyte(int dummy, unsigned char *c)
{
+ (void)dummy;
+
*c = mem_buf[mem_pos++];
if(mem_pos >= mem_buflen)
mem_pos = 0;