mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Refactor and code cleanup.
This commit is contained in:
@@ -43,7 +43,7 @@ namespace DiscImageChef.Filesystems
|
||||
/// <summary>
|
||||
/// BTRFS magic "_BHRfS_M"
|
||||
/// </summary>
|
||||
const ulong magic = 0x4D5F53665248425F;
|
||||
const ulong btrfsMagic = 0x4D5F53665248425F;
|
||||
|
||||
public BTRFS()
|
||||
{
|
||||
@@ -149,7 +149,7 @@ namespace DiscImageChef.Filesystems
|
||||
DicConsole.DebugWriteLine("BTRFS Plugin", "partitionStart = {0}", partitionStart);
|
||||
DicConsole.DebugWriteLine("BTRFS Plugin", "btrfsSb.magic = 0x{0:X16}", btrfsSb.magic);
|
||||
|
||||
return btrfsSb.magic == magic;
|
||||
return btrfsSb.magic == btrfsMagic;
|
||||
}
|
||||
|
||||
public override void GetInformation(ImagePlugins.ImagePlugin imagePlugin, ulong partitionStart, ulong partitionEnd, out string information)
|
||||
|
||||
Reference in New Issue
Block a user