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:
@@ -87,7 +87,7 @@ namespace Aaru.Filesystems
|
||||
// TODO: No more exceptions
|
||||
try
|
||||
{
|
||||
byte[] sector = _image.ReadSectorLong((entry.Extents[0].extent * _blockSize) / 2048);
|
||||
byte[] sector = _image.ReadSectorLong(entry.Extents[0].extent * _blockSize / 2048);
|
||||
|
||||
if(sector[15] != 2)
|
||||
return Errno.NoError;
|
||||
|
||||
Reference in New Issue
Block a user