Using typedef U32 instead of int

dev
bimbashrestha 2019-08-26 09:00:22 -07:00
parent ba46932492
commit 1f2bf77f2a
1 changed files with 1 additions and 1 deletions

View File

@ -2283,7 +2283,7 @@ static size_t ZSTD_compressBlock_internal(ZSTD_CCtx* zc,
This isn't the actual upper bound. Finding the real threshold
needs further investigation.
*/
const int rleMaxLength = 25;
const U32 rleMaxLength = 25;
size_t cSize;
const BYTE* ip = (const BYTE*)src;
BYTE* op = (BYTE*)dst;