1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-01 09:47:01 +03:00

Merge pull request #567 from inikep/dev11

faster Travis tests
This commit is contained in:
Yann Collet
2017-02-25 06:57:31 -08:00
committed by GitHub
3 changed files with 33 additions and 19 deletions

View File

@ -609,7 +609,7 @@ static U32 generateSequences(U32* seed, frame_t* frame, seqStore_t* seqStore,
{
/* The total length of all the matches */
size_t const remainingMatch = contentSize - literalsSize;
size_t excessMatch;
size_t excessMatch = 0;
U32 i;
U32 numSequences;