1
0
Fork 0
forked from len0rd/rockbox

Very minor changes to remove compiler warnings (tested with gcc-3.4.2 under Linux)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5958 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2005-02-15 20:23:10 +00:00
parent f59bfba605
commit 1ec83e2069
4 changed files with 14 additions and 7 deletions

View file

@ -119,6 +119,9 @@ int mad_decoder_finish(struct mad_decoder *decoder)
return (!WIFEXITED(status) || WEXITSTATUS(status)) ? -1 : 0;
}
# else
/* Avoid compiler warning */
(void)decoder;
# endif
return 0;
@ -577,6 +580,10 @@ int mad_decoder_message(struct mad_decoder *decoder,
return 0;
# else
/* Avoid compiler warnings */
(void)decoder;
(void)message;
(void)len;
return -1;
# endif
}