summaryrefslogtreecommitdiff
path: root/apps/mp3data.c
diff options
context:
space:
mode:
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 4944e02..13ff0a8 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;