Quiet appveyor warnings
This commit is contained in:
@@ -541,14 +541,14 @@ void ZSTD_ldm_skipSequences(rawSeqStore_t* rawSeqStore, size_t srcSize, U32 cons
|
|||||||
rawSeq* seq = rawSeqStore->seq + rawSeqStore->pos;
|
rawSeq* seq = rawSeqStore->seq + rawSeqStore->pos;
|
||||||
if (srcSize <= seq->litLength) {
|
if (srcSize <= seq->litLength) {
|
||||||
/* Skip past srcSize literals */
|
/* Skip past srcSize literals */
|
||||||
seq->litLength -= srcSize;
|
seq->litLength -= (U32)srcSize;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
srcSize -= seq->litLength;
|
srcSize -= seq->litLength;
|
||||||
seq->litLength = 0;
|
seq->litLength = 0;
|
||||||
if (srcSize < seq->matchLength) {
|
if (srcSize < seq->matchLength) {
|
||||||
/* Skip past the first srcSize of the match */
|
/* Skip past the first srcSize of the match */
|
||||||
seq->matchLength -= srcSize;
|
seq->matchLength -= (U32)srcSize;
|
||||||
if (seq->matchLength < minMatch) {
|
if (seq->matchLength < minMatch) {
|
||||||
/* The match is too short, omit it */
|
/* The match is too short, omit it */
|
||||||
if (rawSeqStore->pos + 1 < rawSeqStore->size) {
|
if (rawSeqStore->pos + 1 < rawSeqStore->size) {
|
||||||
|
|||||||
Reference in New Issue
Block a user