[minor][lib] Remove double semicolon
This commit is contained in:
parent
f58e9a9830
commit
3cda5fae77
@ -3574,7 +3574,7 @@ size_t ZSTD_compress(void* dst, size_t dstCapacity,
|
||||
ZSTD_CCtx* cctx = ZSTD_createCCtx();
|
||||
RETURN_ERROR_IF(!cctx, memory_allocation, "ZSTD_createCCtx failed");
|
||||
result = ZSTD_compressCCtx(cctx, dst, dstCapacity, src, srcSize, compressionLevel);
|
||||
ZSTD_freeCCtx(cctx);;
|
||||
ZSTD_freeCCtx(cctx);
|
||||
#else
|
||||
ZSTD_CCtx ctxBody;
|
||||
ZSTD_initCCtx(&ctxBody, ZSTD_defaultCMem);
|
||||
|
Loading…
x
Reference in New Issue
Block a user