fix uninitialized value warning

This commit is contained in:
Przemyslaw Skibinski
2017-02-24 09:24:55 +01:00
parent b68ea5d87b
commit 8740d6bcf5
+1 -1
View File
@@ -609,7 +609,7 @@ static U32 generateSequences(U32* seed, frame_t* frame, seqStore_t* seqStore,
{ {
/* The total length of all the matches */ /* The total length of all the matches */
size_t const remainingMatch = contentSize - literalsSize; size_t const remainingMatch = contentSize - literalsSize;
size_t excessMatch; size_t excessMatch = 0;
U32 i; U32 i;
U32 numSequences; U32 numSequences;