[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20210629090615.114432-1-lijian_8010a29@163.com>
Date: Tue, 29 Jun 2021 09:06:15 +0000
From: lijian_8010a29@....com
To: anton@...era.com
Cc: linux-ntfs-dev@...ts.sourceforge.net, linux-kernel@...r.kernel.org,
lijian <lijian@...ong.com>
Subject: [PATCH] fs: ntfs: super: removed unneeded semicolon
From: lijian <lijian@...ong.com>
removed unneeded semicolon ';'.
Signed-off-by: lijian <lijian@...ong.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 0d7e948cb29c..a45e06fa8a73 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.17.1
Powered by blists - more mailing lists