libpayload: Make the source for lzma decompression const

Change-Id: I9a16331dedc97f17af94bf2cf535a9c93d1729a0
Signed-off-by: Gabe Black <gabeblack@google.com>
Reviewed-on: http://review.coreboot.org/2667
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
Gabe Black 2013-02-11 20:43:45 -08:00 committed by Patrick Georgi
parent aeda4b8c0a
commit b53a73ef77
2 changed files with 2 additions and 2 deletions

View File

@ -35,6 +35,6 @@
*
* returns the decompressed size, or 0 on error
*/
unsigned long ulzma(unsigned char *src, unsigned char *dst);
unsigned long ulzma(const unsigned char *src, unsigned char *dst);
#endif

View File

@ -14,7 +14,7 @@
#include <string.h>
#include "lzmadecode.c"
unsigned long ulzma(unsigned char * src, unsigned char * dst)
unsigned long ulzma(const unsigned char * src, unsigned char * dst)
{
unsigned char properties[LZMA_PROPERTIES_SIZE];
UInt32 outSize;