Remove redundant parentheses.

This commit is contained in:
2021-08-17 14:27:19 +01:00
parent 6dd5fb5c5c
commit c1287c00cf
61 changed files with 201 additions and 201 deletions

View File

@@ -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;