40392170 integer

This commit is contained in:
inikep
2016-02-04 11:19:06 +01:00
parent 27e1c6a51f
commit cb5cd16d6b
2 changed files with 15 additions and 12 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ typedef struct {
static void ZSTD_resetFreqs(seqStore_t* ssPtr)
{
printf("litSum=%d litLengthSum=%d matchLengthSum=%d offCodeSum=%d\n", ssPtr->litSum, ssPtr->litLengthSum, ssPtr->matchLengthSum, ssPtr->offCodeSum);
// printf("litSum=%d litLengthSum=%d matchLengthSum=%d offCodeSum=%d\n", ssPtr->litSum, ssPtr->litLengthSum, ssPtr->matchLengthSum, ssPtr->offCodeSum);
ssPtr->matchLengthSum = (1<<MLbits);
ssPtr->litLengthSum = (1<<LLbits);
ssPtr->litSum = (1<<Litbits);