better logs

This commit is contained in:
inikep
2016-02-29 22:07:40 +01:00
parent f647d99d61
commit 2d55563b92
4 changed files with 47 additions and 35 deletions
+1
View File
@@ -2040,6 +2040,7 @@ size_t ZSTD_compressContinue (ZSTD_CCtx* zc,
size_t ZSTD_compressBlock(ZSTD_CCtx* zc, void* dst, size_t maxDstSize, const void* src, size_t srcSize)
{
if (srcSize > BLOCKSIZE) return ERROR(srcSize_wrong);
zc->params.searchLength = MINMATCH;
return ZSTD_compressContinue_internal(zc, dst, maxDstSize, src, srcSize, 0);
}