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:
@@ -456,7 +456,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
||||
errorRegisters = new AtaErrorRegistersLBA48();
|
||||
|
||||
// 48-bit ATA CAM commands can crash FreeBSD < 9.2-RELEASE
|
||||
if((System.Environment.Version.Major == 9 && System.Environment.Version.Minor < 2) ||
|
||||
if(System.Environment.Version.Major == 9 && System.Environment.Version.Minor < 2 ||
|
||||
System.Environment.Version.Major < 9) return -1;
|
||||
|
||||
if(buffer == null) return -1;
|
||||
|
||||
Reference in New Issue
Block a user