Skip to content

Commit

Permalink
Revert "Fix rust-osdev#396"
Browse files Browse the repository at this point in the history
This reverts commit 4d4d845.
  • Loading branch information
kennystrawnmusic committed Oct 23, 2023
1 parent 357ece0 commit 12aafb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub fn create_fat_filesystem(
.truncate(true)
.open(out_fat_path)
.unwrap();
let fat_size_padded_and_rounded = (((needed_size + 1024 * 64 - 1) / MB + 1) * MB) + MB;
let fat_size_padded_and_rounded = ((needed_size + 1024 * 64 - 1) / MB + 1) * MB;
fat_file.set_len(fat_size_padded_and_rounded).unwrap();

// choose a file system label
Expand Down

0 comments on commit 12aafb1

Please sign in to comment.