mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Use string interpolation expression.
This commit is contained in:
@@ -249,8 +249,8 @@ namespace DiscImageChef.Filesystems
|
||||
xmlFSType.FreeClusters = xmlFSType.Clusters - (long)(btrfsSb.bytes_used / btrfsSb.sectorsize);
|
||||
xmlFSType.FreeClustersSpecified = true;
|
||||
xmlFSType.VolumeName = btrfsSb.label;
|
||||
xmlFSType.VolumeSerial = string.Format("{0}", btrfsSb.uuid);
|
||||
xmlFSType.VolumeSetIdentifier = string.Format("{0}", btrfsSb.dev_item.device_uuid);
|
||||
xmlFSType.VolumeSerial = $"{btrfsSb.uuid}";
|
||||
xmlFSType.VolumeSetIdentifier = $"{btrfsSb.dev_item.device_uuid}";
|
||||
xmlFSType.Type = Name;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user