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:
@@ -227,7 +227,7 @@ namespace DiscImageChef.Filesystems.LisaFS
|
||||
int offset = 0;
|
||||
|
||||
// Traverse all entries
|
||||
while((offset + 64) <= buf.Length)
|
||||
while(offset + 64 <= buf.Length)
|
||||
{
|
||||
// Catalog block header
|
||||
if(buf[offset + 0x24] == 0x08) offset += 78;
|
||||
|
||||
Reference in New Issue
Block a user