diff --git a/DiscImageChef.Filesystems/PFS.cs b/DiscImageChef.Filesystems/PFS.cs index 55bd5769..34f6d146 100644 --- a/DiscImageChef.Filesystems/PFS.cs +++ b/DiscImageChef.Filesystems/PFS.cs @@ -236,7 +236,7 @@ namespace DiscImageChef.Filesystems xmlFSType.CreationDateSpecified = true; xmlFSType.FreeClusters = rootBlock.blocksfree; xmlFSType.FreeClustersSpecified = true; - xmlFSType.Clusters = rootBlock.diskSize / imagePlugin.GetSectorSize(); + xmlFSType.Clusters = rootBlock.diskSize; xmlFSType.ClusterSize = (int)imagePlugin.GetSectorSize(); xmlFSType.VolumeName = StringHandlers.PascalToString(rootBlock.diskname, CurrentEncoding); }