]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
removed trace control
authorYann Collet <yann.collet.73@gmail.com>
Sun, 4 Feb 2024 03:32:59 +0000 (19:32 -0800)
committerYann Collet <yann.collet.73@gmail.com>
Sun, 4 Feb 2024 03:32:59 +0000 (19:32 -0800)
lib/compress/zstd_opt.c

index eb86470629da7a0d2172cf512e0b1eb503c3adf6..04587e855aa85b0b5f987dcce92054dea3c9ff6e 100644 (file)
@@ -1512,7 +1512,6 @@ size_t ZSTD_compressBlock_btultra2(
      * The compression ratio gain is generally small (~0.5% on first block),
      * the cost is 2x cpu time on first block. */
     assert(srcSize <= ZSTD_BLOCKSIZE_MAX);
-    //g_debuglevel = -g_debuglevel;
     if ( (ms->opt.litLengthSum==0)   /* first block */
       && (seqStore->sequences == seqStore->sequencesStart)  /* no ldm */
       && (ms->window.dictLimit == ms->window.lowLimit)   /* no dictionary */
@@ -1522,7 +1521,6 @@ size_t ZSTD_compressBlock_btultra2(
         ZSTD_initStats_ultra(ms, seqStore, rep, src, srcSize);
     }
 
-    //g_debuglevel = -g_debuglevel;
     return ZSTD_compressBlock_opt2(ms, seqStore, rep, src, srcSize, ZSTD_noDict);
 }
 #endif