Skip to content

Commit

Permalink
fixed minor error in one benchmark scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyan4973 committed Dec 18, 2024
1 parent 6b28993 commit 127ad2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/fullbench.c
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ static PrepResult prepConvertSequences(const void* src, size_t srcSize, int cLev
MEM_write32((char*)prepBuffer+4, (U32)nbSeqs);
memcpy(seqs + nbSeqs, src, srcSize);
r.prepBuffer = prepBuffer;
r.prepSize = 8 + sizeof(ZSTD_Sequence)*nbSeqs + srcSize;
r.prepSize = 8 + sizeof(ZSTD_Sequence) * nbSeqs;
r.fixedOrigSize = blockSize;
return r;
}
Expand Down

0 comments on commit 127ad2c

Please sign in to comment.