mirror of
https://github.com/facebook/zstd.git
synced 2025-11-24 12:01:06 +03:00
[minor][lib] Remove double semicolon
This commit is contained in:
@@ -3574,7 +3574,7 @@ size_t ZSTD_compress(void* dst, size_t dstCapacity,
|
|||||||
ZSTD_CCtx* cctx = ZSTD_createCCtx();
|
ZSTD_CCtx* cctx = ZSTD_createCCtx();
|
||||||
RETURN_ERROR_IF(!cctx, memory_allocation, "ZSTD_createCCtx failed");
|
RETURN_ERROR_IF(!cctx, memory_allocation, "ZSTD_createCCtx failed");
|
||||||
result = ZSTD_compressCCtx(cctx, dst, dstCapacity, src, srcSize, compressionLevel);
|
result = ZSTD_compressCCtx(cctx, dst, dstCapacity, src, srcSize, compressionLevel);
|
||||||
ZSTD_freeCCtx(cctx);;
|
ZSTD_freeCCtx(cctx);
|
||||||
#else
|
#else
|
||||||
ZSTD_CCtx ctxBody;
|
ZSTD_CCtx ctxBody;
|
||||||
ZSTD_initCCtx(&ctxBody, ZSTD_defaultCMem);
|
ZSTD_initCCtx(&ctxBody, ZSTD_defaultCMem);
|
||||||
|
|||||||
Reference in New Issue
Block a user