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:
@@ -97,7 +97,7 @@ namespace DiscImageChef.Filesystems
|
||||
offset = 0x400;
|
||||
}
|
||||
|
||||
if((sector + partition.Start) >= partition.End) return false;
|
||||
if(sector + partition.Start >= partition.End) return false;
|
||||
|
||||
ushort magic;
|
||||
byte[] minix_sb_sector = imagePlugin.ReadSector(sector + partition.Start);
|
||||
@@ -164,7 +164,7 @@ namespace DiscImageChef.Filesystems
|
||||
magic == MINIX_MAGIC || magic == MINIX_CIGAM)
|
||||
{
|
||||
filenamesize = 60;
|
||||
littleEndian = (magic != MINIX3_CIGAM || magic == MINIX2_CIGAM || magic == MINIX_CIGAM);
|
||||
littleEndian = magic != MINIX3_CIGAM || magic == MINIX2_CIGAM || magic == MINIX_CIGAM;
|
||||
|
||||
if(magic == MINIX3_MAGIC || magic == MINIX3_CIGAM)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user