From b1e4466683a3521ffa51207d6a9bd622aaa6449b Mon Sep 17 00:00:00 2001 From: Ave Date: Tue, 18 Sep 2018 09:01:03 +0300 Subject: [PATCH] fusee: Fix a compiler warning And therefore fix fusee builds, and therefore atmosphere builds --- fusee/fusee-primary/src/lib/lz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fusee/fusee-primary/src/lib/lz.c b/fusee/fusee-primary/src/lib/lz.c index 564d480ad..e18d437e1 100644 --- a/fusee/fusee-primary/src/lib/lz.c +++ b/fusee/fusee-primary/src/lib/lz.c @@ -188,7 +188,7 @@ static int _LZ_ReadVarSize( unsigned int * x, const unsigned char * buf ) * The function returns the size of the compressed data. *************************************************************************/ -int LZ_Compress( const unsigned char *in, unsigned char *out, unsigned int insize ) +int LZ_Compress( unsigned char *in, unsigned char *out, unsigned int insize ) { unsigned char marker, symbol; unsigned int inpos, outpos, bytesleft, i;