mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-16 17:51:42 +00:00
Fix type sizes
This commit is contained in:
@@ -113,7 +113,7 @@ namespace Disk
|
||||
}
|
||||
partition.StartLBA = GPTPartition.FirstLBA;
|
||||
partition.EndLBA = GPTPartition.LastLBA;
|
||||
partition.Sectors = partition.EndLBA - partition.StartLBA;
|
||||
partition.Sectors = (size_t)(partition.EndLBA - partition.StartLBA);
|
||||
partition.Port = ItrPort;
|
||||
partition.Flags = Present;
|
||||
partition.Style = GPT;
|
||||
|
Reference in New Issue
Block a user