diff --git a/Aaru.CommonTypes b/Aaru.CommonTypes
index df7815968..a9fdbe558 160000
--- a/Aaru.CommonTypes
+++ b/Aaru.CommonTypes
@@ -1 +1 @@
-Subproject commit df78159688a5824291ff95b0ae963fdf51f2bb3a
+Subproject commit a9fdbe55855c6e74e36a8cb6e4b905c1d2ef3c80
diff --git a/Aaru.Devices/Device/ScsiCommands/SPC.cs b/Aaru.Devices/Device/ScsiCommands/SPC.cs
index 0cdefbaa3..d32cdb5e0 100644
--- a/Aaru.Devices/Device/ScsiCommands/SPC.cs
+++ b/Aaru.Devices/Device/ScsiCommands/SPC.cs
@@ -394,13 +394,9 @@ public partial class Device
/// Timeout in seconds.
/// Duration in milliseconds it took for the device to execute the command.
/// true to prevent medium removal, false to allow it.
- public bool SpcPreventAllowMediumRemoval(out byte[] senseBuffer, bool prevent, uint timeout, out double duration)
- {
- if(prevent)
- return SpcPreventAllowMediumRemoval(out senseBuffer, ScsiPreventAllowMode.Prevent, timeout, out duration);
-
- return SpcPreventAllowMediumRemoval(out senseBuffer, ScsiPreventAllowMode.Allow, timeout, out duration);
- }
+ public bool SpcPreventAllowMediumRemoval(out byte[] senseBuffer, bool prevent, uint timeout, out double duration) =>
+ prevent ? SpcPreventAllowMediumRemoval(out senseBuffer, ScsiPreventAllowMode.Prevent, timeout, out duration)
+ : SpcPreventAllowMediumRemoval(out senseBuffer, ScsiPreventAllowMode.Allow, timeout, out duration);
/// Sends the SPC PREVENT ALLOW MEDIUM REMOVAL command
/// true if the command failed and contains the sense buffer.
diff --git a/Aaru.Filesystems/QNX4.cs b/Aaru.Filesystems/QNX4.cs
index 66e6d47ff..8414a4cff 100644
--- a/Aaru.Filesystems/QNX4.cs
+++ b/Aaru.Filesystems/QNX4.cs
@@ -100,13 +100,10 @@ public sealed class QNX4 : IFilesystem
return false;
// Check inodes are in use
- if((qnxSb.rootDir.di_status & 0x01) != 0x01 ||
- (qnxSb.inode.di_status & 0x01) != 0x01 ||
- (qnxSb.boot.di_status & 0x01) != 0x01)
- return false;
+ return (qnxSb.rootDir.di_status & 0x01) == 0x01 && (qnxSb.inode.di_status & 0x01) == 0x01 &&
+ (qnxSb.boot.di_status & 0x01) == 0x01;
// All hail filesystems without identification marks
- return true;
}
///
diff --git a/Aaru.Images/BlindWrite4/Read.cs b/Aaru.Images/BlindWrite4/Read.cs
index 1cfbecf41..8ec3b24d0 100644
--- a/Aaru.Images/BlindWrite4/Read.cs
+++ b/Aaru.Images/BlindWrite4/Read.cs
@@ -1212,13 +1212,8 @@ public sealed partial class BlindWrite4
}
///
- public List