Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1398098 > unrolled thread

[PATCH 2/7] nilfs2: remove space before semicolon

Started byRyusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
First post2016-05-10 15:40 +0200
Last post2016-05-10 15:40 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 2/7] nilfs2: remove space before semicolon Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> - 2016-05-10 15:40 +0200

#1398098 — [PATCH 2/7] nilfs2: remove space before semicolon

FromRyusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Date2016-05-10 15:40 +0200
Subject[PATCH 2/7] nilfs2: remove space before semicolon
Message-ID<rxg3f-3eA-5@gated-at.bofh.it>
This fixes the checkpatch.pl warning "WARNING: space prohibited before
semicolon" at nilfs_store_magic_and_option().

Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
---
 fs/nilfs2/super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/nilfs2/super.c b/fs/nilfs2/super.c
index 92acb00..0271784 100644
--- a/fs/nilfs2/super.c
+++ b/fs/nilfs2/super.c
@@ -886,7 +886,7 @@ int nilfs_store_magic_and_option(struct super_block *sb,
 	nilfs->ns_interval = le32_to_cpu(sbp->s_c_interval);
 	nilfs->ns_watermark = le32_to_cpu(sbp->s_c_block_max);
 
-	return !parse_options(data, sb, 0) ? -EINVAL : 0 ;
+	return !parse_options(data, sb, 0) ? -EINVAL : 0;
 }
 
 int nilfs_check_feature_compatibility(struct super_block *sb,
-- 
1.8.3.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web