From 876ea98c1842b24bc42d0f5229721c104fe3f8b3 Mon Sep 17 00:00:00 2001 From: TomAwezome Date: Sat, 22 Oct 2022 18:43:18 -0400 Subject: [PATCH] Fix FileSysFAT.ZC code formatting. --- src/Kernel/BlkDev/FileSysFAT.ZC | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Kernel/BlkDev/FileSysFAT.ZC b/src/Kernel/BlkDev/FileSysFAT.ZC index 07258f1b..0036c265 100755 --- a/src/Kernel/BlkDev/FileSysFAT.ZC +++ b/src/Kernel/BlkDev/FileSysFAT.ZC @@ -1045,8 +1045,7 @@ Bool FAT32MkDir(CDrive *drive, U8 *cur_dir, U8 *name, I64 entry_count) { I64 c, cur_dir_clus = Name2DirClus(drive, cur_dir), //Rough estimate of size - size = CeilU64((entry_count + 2) << FAT32_ENTRIES_BITS, - drive->spc << BLK_SIZE_BITS); + size = CeilU64((entry_count + 2) << FAT32_ENTRIES_BITS, drive->spc << BLK_SIZE_BITS); U8 *buf = CAlloc(size); CDirEntry d_native; CFAT32DirEntry *dFAT = buf;