Remove implicit typecast to appease appVeyor windows build

This commit is contained in:
senhuang42
2020-10-28 16:25:09 -04:00
parent 3ed5d053d8
commit 59624f3163
+1 -1
View File
@@ -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++;
}