Remove implicit typecast to appease appVeyor windows build
This commit is contained in:
parent
3ed5d053d8
commit
59624f3163
@ -2493,7 +2493,7 @@ static void ZSTD_copyBlockSequences(ZSTD_CCtx* zc)
|
||||
assert(seqStoreLiteralsSize >= literalsRead);
|
||||
lastLLSize = seqStoreLiteralsSize - literalsRead;
|
||||
if (lastLLSize > 0) {
|
||||
outSeqs[i].litLength = lastLLSize;
|
||||
outSeqs[i].litLength = (U32)lastLLSize;
|
||||
outSeqs[i].matchLength = outSeqs[i].offset = outSeqs[i].rep = 0;
|
||||
seqStoreSeqSize++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user