* [PATCH] fs: omfs: Convert comma to semicolon
@ 2024-07-09 6:51 Chen Ni
2024-07-09 12:57 ` Bob Copeland
0 siblings, 1 reply; 2+ messages in thread
From: Chen Ni @ 2024-07-09 6:51 UTC (permalink / raw)
To: me; +Cc: linux-karma-devel, linux-kernel, Chen Ni
Replace a comma between expression statements by a semicolon.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
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 6b580b9da8e3..94cb3b454c6f 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[0].e_cluster = ~cpu_to_be64(0ULL);
oe->e_entry[0].e_blocks = ~cpu_to_be64(0ULL);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] fs: omfs: Convert comma to semicolon
2024-07-09 6:51 [PATCH] fs: omfs: Convert comma to semicolon Chen Ni
@ 2024-07-09 12:57 ` Bob Copeland
0 siblings, 0 replies; 2+ messages in thread
From: Bob Copeland @ 2024-07-09 12:57 UTC (permalink / raw)
To: Chen Ni; +Cc: linux-karma-devel, linux-kernel
On Tue, Jul 09, 2024 at 02:51:51PM +0800, Chen Ni wrote:
> Replace a comma between expression statements by a semicolon.
>
> Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Oops, good catch.
Acked-by: Bob Copeland <me@bobcopeland.com>
--
Bob Copeland %% https://bobcopeland.com/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-07-09 12:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-09 6:51 [PATCH] fs: omfs: Convert comma to semicolon Chen Ni
2024-07-09 12:57 ` Bob Copeland
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox