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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 10 Aug 2021 20:39:19 +0800 From: Jason Wang <wangborong@...rlc.com> To: martin.petersen@...cle.com Cc: jejb@...ux.ibm.com, brking@...ibm.com, linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org, Jason Wang <wangborong@...rlc.com> Subject: [PATCH] scsi: ipr: Remove unneeded semicolon The semicolon after a code block bracket is unneeded in C. Thus, we can remove the redundant semicolon from the code safely. Signed-off-by: Jason Wang <wangborong@...rlc.com> --- drivers/scsi/ipr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/ipr.h b/drivers/scsi/ipr.h index 69444d21fca1..54e47ce18338 100644 --- a/drivers/scsi/ipr.h +++ b/drivers/scsi/ipr.h @@ -1977,7 +1977,7 @@ static inline int ipr_sdt_is_fmt2(u32 sdt_word) case IPR_SDT_FMT2_BAR5_SEL: case IPR_SDT_FMT2_EXP_ROM_SEL: return 1; - }; + } return 0; } -- 2.32.0
Powered by blists - more mailing lists