mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Remove redundant parentheses.
This commit is contained in:
@@ -337,7 +337,7 @@ namespace DiscImageChef.Partitions
|
||||
{
|
||||
Partition part = new Partition
|
||||
{
|
||||
Start = ((ulong)(parts[i].p_start * bps) / imagePlugin.GetSectorSize()),
|
||||
Start = (ulong)(parts[i].p_start * bps) / imagePlugin.GetSectorSize(),
|
||||
Length = (ulong)(parts[i].p_size * bps) / imagePlugin.GetSectorSize(),
|
||||
Offset = (ulong)(parts[i].p_start * bps),
|
||||
Size = (ulong)(parts[i].p_size * bps),
|
||||
|
||||
Reference in New Issue
Block a user