tinf_uncompress(): Mark unused argument.

Patch by Damien George from
https://github.com/micropython/micropython/pull/1082.patch
This commit is contained in:
Paul Sokolovsky 2015-03-19 00:01:26 +02:00
parent e42b0fc4c4
commit f649d0d33a

View file

@ -449,6 +449,7 @@ void tinf_init(void)
int tinf_uncompress(void *dest, unsigned int *destLen,
const void *source, unsigned int sourceLen)
{
(void)sourceLen;
TINF_DATA d;
int res;