From: kernel test robot <lkp@intel.com>
To: Nick Terrell <nickrterrell@gmail.com>,
Herbert Xu <herbert@gondor.apana.org.au>
Cc: kbuild-all@lists.01.org, linux-crypto@vger.kernel.org,
linux-btrfs@vger.kernel.org,
squashfs-devel@lists.sourceforge.net,
linux-f2fs-devel@lists.sourceforge.net,
linux-kernel@vger.kernel.org, Kernel Team <Kernel-team@fb.com>,
Nick Terrell <nickrterrell@gmail.com>,
Chris Mason <chris.mason@fusionio.com>,
Petr Malat <oss@malat.biz>
Subject: [PATCH] lib: zstd: fix semicolon.cocci warnings
Date: Fri, 2 Oct 2020 04:50:49 +0800 [thread overview]
Message-ID: <20201001205049.GA6920@f58d09cd8e1e> (raw)
In-Reply-To: <20200930065318.3326526-4-nickrterrell@gmail.com>
From: kernel test robot <lkp@intel.com>
lib/zstd/compress/zstd_compress.c:3248:24-25: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
CC: Nick Terrell <terrelln@fb.com>
Signed-off-by: kernel test robot <lkp@intel.com>
---
url: https://github.com/0day-ci/linux/commits/Nick-Terrell/Update-to-zstd-1-4-6/20200930-145157
base: https://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git for-next
zstd_compress.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/lib/zstd/compress/zstd_compress.c
+++ b/lib/zstd/compress/zstd_compress.c
@@ -3245,7 +3245,7 @@ size_t ZSTD_compress(void* dst, size_t d
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);
return result;
}
next prev parent reply other threads:[~2020-10-01 20:51 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20200930065318.3326526-4-nickrterrell@gmail.com>
2020-10-01 20:50 ` [PATCH v4 3/9] lib: zstd: Upgrade to latest upstream zstd version 1.4.6 kernel test robot
2020-10-01 20:50 ` kernel test robot [this message]
[not found] <20201103060535.8460-4-nickrterrell@gmail.com>
2020-11-13 9:36 ` [PATCH] lib: zstd: fix semicolon.cocci warnings kernel test robot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201001205049.GA6920@f58d09cd8e1e \
--to=lkp@intel.com \
--cc=Kernel-team@fb.com \
--cc=chris.mason@fusionio.com \
--cc=herbert@gondor.apana.org.au \
--cc=kbuild-all@lists.01.org \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-f2fs-devel@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=nickrterrell@gmail.com \
--cc=oss@malat.biz \
--cc=squashfs-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).