aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaomin Deng <[email protected]>2022-11-05 11:31:35 -0400
committerChristian Brauner <[email protected]>2023-05-19 12:00:57 +0200
commit6405fee9b0d04ea8a5a2a7fa671f8f45765d8dcb (patch)
treefe505df4d62cacd0dbcaab2c7db7b0c5018b79fc
parent253f3137ebfd0b2385fbc4f078bccb2a4097406d (diff)
ntfs: Remove unneeded semicolon
Remove the unneeded semicolon after curly braces. Signed-off-by: Shaomin Deng <[email protected]> Reviewed-by: Namjae Jeon <[email protected]> Message-Id: <[email protected]> Signed-off-by: Christian Brauner <[email protected]>
-rw-r--r--fs/ntfs/super.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c
index 2643a08182e1..56a7d5bd33e4 100644
--- a/fs/ntfs/super.c
+++ b/fs/ntfs/super.c
@@ -1620,7 +1620,7 @@ read_partial_attrdef_page:
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)
@@ -1689,7 +1689,7 @@ read_partial_upcase_page:
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)