]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
nit: comment indentation
authorYann Collet <cyan@fb.com>
Mon, 26 Feb 2024 21:23:59 +0000 (13:23 -0800)
committerYann Collet <cyan@fb.com>
Mon, 26 Feb 2024 21:23:59 +0000 (13:23 -0800)
as reported by @terrelln

lib/compress/zstd_compress_superblock.c

index cf3cb43622896a8be51bb5fa9787644c3f654818..e9038c472c0195f01716eedebbbb314359718c4e 100644 (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);