mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Code restyling.
This commit is contained in:
@@ -60,7 +60,7 @@ namespace Aaru.CommonTypes
|
||||
/// <summary>Information that does not find space in this struct</summary>
|
||||
public string Description;
|
||||
/// <summary>LBA of last partition sector</summary>
|
||||
public ulong End => Start + Length - 1;
|
||||
public ulong End => (Start + Length) - 1;
|
||||
/// <summary>Name of partition scheme that contains this partition</summary>
|
||||
public string Scheme;
|
||||
|
||||
@@ -89,7 +89,7 @@ namespace Aaru.CommonTypes
|
||||
End > other.End)
|
||||
return 1;
|
||||
|
||||
return-1;
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Define the equality operator.
|
||||
|
||||
Reference in New Issue
Block a user