From: Nick Terrell Date: Wed, 2 Dec 2020 08:59:31 +0000 (-0800) Subject: [minor][lib] Remove double semicolon X-Git-Tag: v1.4.7~18^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cda5fae773c158ae94c651fade44244df8c7dad;p=thirdparty%2Fzstd.git [minor][lib] Remove double semicolon --- 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);