From 3cda5fae773c158ae94c651fade44244df8c7dad Mon Sep 17 00:00:00 2001 From: Nick Terrell Date: Wed, 2 Dec 2020 00:59:31 -0800 Subject: [PATCH] [minor][lib] Remove double semicolon --- lib/compress/zstd_compress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compress/zstd_compress.c b/lib/compress/zstd_compress.c index 92f03086a..f18e55e60 100644 --- a/lib/compress/zstd_compress.c +++ b/lib/compress/zstd_compress.c @@ -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); -- 2.47.2