commit | b41ad244e02a214905b98cf34e0272b48bae0ae7 | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@gentoo.org> | Sun Jul 25 15:54:17 2010 -0400 |
committer | Wolfgang Denk <wd@denx.de> | Wed Aug 04 00:43:53 2010 +0200 |
tree | a7c76656e3814404986d67c2e9c6b35ff3ab9b07 | |
parent | 9035c0f6768a5e8c18d1b07092d9d70b58c9d776 [diff] |
bootm: fix pointer warning with lzma Avoid warning: cmd_bootm.c: In function 'bootm_load_os': cmd_bootm.c:394: warning: passing argument 2 of 'lzmaBuffToBuffDecompress' from incompatible pointer type For 32 bit systems, this change shouldn't make a difference to code size since sizeof(size_t) and sizeof(unsigned int) are equal. But it does fix the warning. Signed-off-by: Mike Frysinger <vapier@gentoo.org>