2024-01-03 01:07:45

by Yang Li

[permalink] [raw]
Subject: [PATCH -next] bcachefs: Remove unneeded semicolon

./fs/bcachefs/super.c:1093:59-60: Unneeded semicolon
./fs/bcachefs/super.c:1097:59-60: Unneeded semicolon

Signed-off-by: Yang Li <[email protected]>
---
fs/bcachefs/super.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/bcachefs/super.c b/fs/bcachefs/super.c
index 64ff7da49860..bc254d69b596 100644
--- a/fs/bcachefs/super.c
+++ b/fs/bcachefs/super.c
@@ -1090,11 +1090,11 @@ static int bch2_dev_in_fs(struct bch_sb_handle *fs,
prt_newline(&buf);

prt_printf(&buf, "%pg ", fs->bdev);
- bch2_prt_datetime(&buf, le64_to_cpu(fs->sb->write_time));;
+ bch2_prt_datetime(&buf, le64_to_cpu(fs->sb->write_time));
prt_newline(&buf);

prt_printf(&buf, "%pg ", sb->bdev);
- bch2_prt_datetime(&buf, le64_to_cpu(sb->sb->write_time));;
+ bch2_prt_datetime(&buf, le64_to_cpu(sb->sb->write_time));
prt_newline(&buf);

prt_printf(&buf, "Not using older sb");
--
2.20.1.7.g153144c