]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
removed debugging traces
authorYann Collet <yann.collet.73@gmail.com>
Thu, 14 Jul 2016 15:46:38 +0000 (17:46 +0200)
committerYann Collet <yann.collet.73@gmail.com>
Thu, 14 Jul 2016 15:46:38 +0000 (17:46 +0200)
lib/compress/zstd_compress.c

index c42f56ebcfe1502c792a0dded5fbabb93083ccaf..e583833446a6f1703e60ce9e860cefa66b907a83 100644 (file)
@@ -2317,15 +2317,8 @@ _storeSequence:
     /* Save reps for next block */
     ctx->savedRep[0] = offset_1; ctx->savedRep[1] = offset_2;
 
-    static unsigned nbBlocks = 0;
-    printf("nbBlocks : %u \n", ++nbBlocks);
-    if (nbBlocks == 185)
-        printf("@");
-
     /* Last Literals */
     {   size_t const lastLLSize = iend - anchor;
-        if (lastLLSize == 4181)
-            printf("~");
         memcpy(seqStorePtr->lit, anchor, lastLLSize);
         seqStorePtr->lit += lastLLSize;
     }