mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Corrected XML clusters count.
This commit is contained in:
@@ -236,7 +236,7 @@ namespace DiscImageChef.Filesystems
|
|||||||
xmlFSType.CreationDateSpecified = true;
|
xmlFSType.CreationDateSpecified = true;
|
||||||
xmlFSType.FreeClusters = rootBlock.blocksfree;
|
xmlFSType.FreeClusters = rootBlock.blocksfree;
|
||||||
xmlFSType.FreeClustersSpecified = true;
|
xmlFSType.FreeClustersSpecified = true;
|
||||||
xmlFSType.Clusters = rootBlock.diskSize / imagePlugin.GetSectorSize();
|
xmlFSType.Clusters = rootBlock.diskSize;
|
||||||
xmlFSType.ClusterSize = (int)imagePlugin.GetSectorSize();
|
xmlFSType.ClusterSize = (int)imagePlugin.GetSectorSize();
|
||||||
xmlFSType.VolumeName = StringHandlers.PascalToString(rootBlock.diskname, CurrentEncoding);
|
xmlFSType.VolumeName = StringHandlers.PascalToString(rootBlock.diskname, CurrentEncoding);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user