Fix red: Mark variable as unused the rockbox way
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31125 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
eea3c1cd94
commit
1d81683e08
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue