Fix compilation warning

This commit is contained in:
emmanuel-marty 2019-05-14 12:18:35 +02:00
parent 277b5b1025
commit a708a02048
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,7 @@ lzsa_status_t lzsa_decompress_stream(lzsa_stream_t *pInStream, lzsa_stream_t *pO
nReadBytes -= 4;
else
nReadBytes = 0;
nBlockSize = nReadBytes;
nBlockSize = (unsigned int)nReadBytes;
}
if (nReadBytes == nBlockSize) {