[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20221105153135.5975-1-dengshaomin@cdjrlc.com>
Date: Sat, 5 Nov 2022 11:31:35 -0400
From: Shaomin Deng <dengshaomin@...rlc.com>
To: anton@...era.com, linux-ntfs-dev@...ts.sourceforge.net,
linux-kernel@...r.kernel.org
Cc: Shaomin Deng <dengshaomin@...rlc.com>
Subject: [PATCH] ntfs: Remove unneeded semicolon
Remove the unneeded semicolon after curly braces.
Signed-off-by: Shaomin Deng <dengshaomin@...rlc.com>
---
fs/ntfs/super.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c
index 001f4e053c85..6165fe7d0ac6 100644
--- a/fs/ntfs/super.c
+++ b/fs/ntfs/super.c
@@ -1612,7 +1612,7 @@ static bool load_and_init_attrdef(ntfs_volume *vol)
memcpy((u8*)vol->attrdef + (index++ << PAGE_SHIFT),
page_address(page), size);
ntfs_unmap_page(page);
- };
+ }
if (size == PAGE_SIZE) {
size = i_size & ~PAGE_MASK;
if (size)
@@ -1681,7 +1681,7 @@ static bool load_and_init_upcase(ntfs_volume *vol)
memcpy((char*)vol->upcase + (index++ << PAGE_SHIFT),
page_address(page), size);
ntfs_unmap_page(page);
- };
+ }
if (size == PAGE_SIZE) {
size = i_size & ~PAGE_MASK;
if (size)
--
2.35.1
Powered by blists - more mailing lists