]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
[minor][lib] Remove double semicolon
authorNick Terrell <terrelln@fb.com>
Wed, 2 Dec 2020 08:59:31 +0000 (00:59 -0800)
committerNick Terrell <terrelln@fb.com>
Wed, 2 Dec 2020 09:08:08 +0000 (01:08 -0800)
lib/compress/zstd_compress.c

index 92f03086a55973934efb425d39b4926999946a3e..f18e55e60c253326b729e859e13dac5ca30306de 100644 (file)
@@ -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);