fat: Add missing semicolon

This commit is contained in:
mintsuki 2022-05-07 16:33:40 +02:00
parent c8973ed681
commit 0c46c16a71
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ static int fat32_init_context(struct fat32_context* context, struct volume *part
return 1;
valid:
valid:;
// The following mess to identify the FAT type is from the FAT spec
// at paragraph 3.5
size_t root_dir_sects = ((bpb.root_entries_count * 32) + (bpb.bytes_per_sector - 1)) / bpb.bytes_per_sector;