[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20201211084013.1878-1-zhengyongjun3@huawei.com>
Date: Fri, 11 Dec 2020 16:40:13 +0800
From: Zheng Yongjun <zhengyongjun3@...wei.com>
To: <jlayton@...nel.org>, <idryomov@...il.com>
CC: <ceph-devel@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
"Zheng Yongjun" <zhengyongjun3@...wei.com>
Subject: [PATCH -next] fs/omfs: convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Zheng Yongjun <zhengyongjun3@...wei.com>
---
fs/omfs/file.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/omfs/file.c b/fs/omfs/file.c
index 2c7b70ee1388..fc6828f30f60 100644
--- a/fs/omfs/file.c
+++ b/fs/omfs/file.c
@@ -22,8 +22,8 @@ void omfs_make_empty_table(struct buffer_head *bh, int offset)
struct omfs_extent *oe = (struct omfs_extent *) &bh->b_data[offset];
oe->e_next = ~cpu_to_be64(0ULL);
- oe->e_extent_count = cpu_to_be32(1),
- oe->e_fill = cpu_to_be32(0x22),
+ oe->e_extent_count = cpu_to_be32(1);
+ oe->e_fill = cpu_to_be32(0x22);
oe->e_entry.e_cluster = ~cpu_to_be64(0ULL);
oe->e_entry.e_blocks = ~cpu_to_be64(0ULL);
}
--
2.22.0
Powered by blists - more mailing lists