lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1612168659-33332-1-git-send-email-yang.lee@linux.alibaba.com> Date: Mon, 1 Feb 2021 16:37:39 +0800 From: Yang Li <yang.lee@...ux.alibaba.com> To: keescook@...omium.org Cc: linux-hardening@...r.kernel.org, linux-kernel@...r.kernel.org, Yang Li <yang.lee@...ux.alibaba.com> Subject: [PATCH] gcc-plugins: remove unneeded semicolon Eliminate the following coccicheck warning: ./scripts/gcc-plugins/latent_entropy_plugin.c:527:2-3: Unneeded semicolon Reported-by: Abaci Robot <abaci@...ux.alibaba.com> Signed-off-by: Yang Li <yang.lee@...ux.alibaba.com> --- scripts/gcc-plugins/latent_entropy_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gcc-plugins/latent_entropy_plugin.c b/scripts/gcc-plugins/latent_entropy_plugin.c index 9dced66..589454b 100644 --- a/scripts/gcc-plugins/latent_entropy_plugin.c +++ b/scripts/gcc-plugins/latent_entropy_plugin.c @@ -524,7 +524,7 @@ static unsigned int latent_entropy_execute(void) while (bb != EXIT_BLOCK_PTR_FOR_FN(cfun)) { perturb_local_entropy(bb, local_entropy); bb = bb->next_bb; - }; + } /* 4. mix local entropy into the global entropy variable */ perturb_latent_entropy(local_entropy); -- 1.8.3.1
Powered by blists - more mailing lists