Commit 6405fee9 authored by Shaomin Deng's avatar Shaomin Deng Committed by Christian Brauner

ntfs: Remove unneeded semicolon

Remove the unneeded semicolon after curly braces.
Signed-off-by: default avatarShaomin Deng <dengshaomin@cdjrlc.com>
Reviewed-by: default avatarNamjae Jeon <linkinjeon@kernel.org>
Message-Id: <20221105153135.5975-1-dengshaomin@cdjrlc.com>
Signed-off-by: default avatarChristian Brauner <brauner@kernel.org>
parent 253f3137
......@@ -1620,7 +1620,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)
......@@ -1689,7 +1689,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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment