Skip to content

Commit

Permalink
rust-osdev#397: New plan
Browse files Browse the repository at this point in the history
Add MB instead of multiplying
  • Loading branch information
kennystrawnmusic committed Oct 23, 2023
1 parent b46a4a1 commit 357ece0
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 + MB) * MB;
let fat_size_padded_and_rounded = (((needed_size + 1024 * 64 - 1) / MB + 1) * MB) + MB;
fat_file.set_len(fat_size_padded_and_rounded).unwrap();

// choose a file system label
Expand Down

0 comments on commit 357ece0

Please sign in to comment.