From: Yann Collet Date: Thu, 14 Jul 2016 15:46:38 +0000 (+0200) Subject: removed debugging traces X-Git-Tag: v0.7.4^2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b23e1ce3199c645af3204481c17f623d9421347b;p=thirdparty%2Fzstd.git removed debugging traces --- diff --git a/lib/compress/zstd_compress.c b/lib/compress/zstd_compress.c index c42f56ebc..e58383344 100644 --- a/lib/compress/zstd_compress.c +++ b/lib/compress/zstd_compress.c @@ -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; }