mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-07-05 17:12:14 +02:00
fusee: Fix a compiler warning
And therefore fix fusee builds, and therefore atmosphere builds
This commit is contained in:
parent
f864b0835d
commit
b1e4466683
@ -188,7 +188,7 @@ static int _LZ_ReadVarSize( unsigned int * x, const unsigned char * buf )
|
|||||||
* The function returns the size of the compressed data.
|
* 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 char marker, symbol;
|
||||||
unsigned int inpos, outpos, bytesleft, i;
|
unsigned int inpos, outpos, bytesleft, i;
|
||||||
|
Loading…
Reference in New Issue
Block a user