mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Remove redundant parentheses.
This commit is contained in:
@@ -582,8 +582,8 @@ namespace Aaru.DiscImages
|
||||
return sector;
|
||||
}
|
||||
|
||||
ulong index = sectorAddress / _grainSize;
|
||||
ulong secOff = (sectorAddress % _grainSize) * SECTOR_SIZE;
|
||||
ulong index = sectorAddress / _grainSize;
|
||||
ulong secOff = sectorAddress % _grainSize * SECTOR_SIZE;
|
||||
|
||||
uint grainOff = _gTable[index];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user