Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1336427
| From | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] fs crypto: fix semicolon.cocci warnings |
| Date | 2016-02-17 14:40 +0100 |
| Message-ID | <r3auM-73z-49@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
---
crypto.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/fs/crypto/crypto.c
+++ b/fs/crypto/crypto.c
@@ -312,7 +312,7 @@ int fscrypt_zeroout_range(struct inode *
}
bio->bi_bdev = inode->i_sb->s_bdev;
bio->bi_iter.bi_sector =
- pblk << (inode->i_sb->s_blocksize_bits - 9);;
+ pblk << (inode->i_sb->s_blocksize_bits - 9);
ret = bio_add_page(bio, ciphertext_page,
inode->i_sb->s_blocksize, 0);
if (ret != inode->i_sb->s_blocksize) {
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] fs crypto: fix semicolon.cocci warnings Julia Lawall <julia.lawall@lip6.fr> - 2016-02-17 14:40 +0100
Re: [PATCH] fs crypto: fix semicolon.cocci warnings Jaegeuk Kim <jaegeuk@kernel.org> - 2016-02-17 20:00 +0100
Re: [PATCH] fs crypto: fix semicolon.cocci warnings Julia Lawall <julia.lawall@lip6.fr> - 2016-02-17 20:30 +0100
csiph-web