nit: comment indentation

as reported by @terrelln
This commit is contained in:
Yann Collet
2024-02-26 13:23:59 -08:00
parent aa8592c532
commit ef82b214ad
+1 -1
View File
@@ -522,7 +522,7 @@ static size_t ZSTD_compressSubBlock_multi(const seqStore_t* seqStorePtr,
(unsigned)ebs.estBlockSize, (double)avgLitCost/BYTESCALE, (double)avgSeqCost/BYTESCALE,
(unsigned)targetCBlockSize, (unsigned)nbSubBlocks, (double)avgBlockBudget/BYTESCALE);
/* compress and write sub-blocks */
/* compress and write sub-blocks */
for (n=0; n+1 < nbSubBlocks; n++) {
/* determine nb of sequences for current sub-block + nbLiterals from next sequence */
size_t seqCount = sizeBlockSequences(sp, (size_t)(send-sp), avgBlockBudget + blockBudgetSupp, avgLitCost, avgSeqCost, n==0);