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:
@@ -482,7 +482,7 @@ namespace DiscImageChef.Filesystems
|
||||
xmlFSType.VolumeName = diskName;
|
||||
xmlFSType.Bootable = bsum == bootBlk.checksum;
|
||||
// Useful as a serial
|
||||
xmlFSType.VolumeSerial = string.Format("{0:X8}", rootBlk.checksum);
|
||||
xmlFSType.VolumeSerial = $"{rootBlk.checksum:X8}";
|
||||
}
|
||||
|
||||
static RootBlock MarshalRootBlock(byte[] block)
|
||||
|
||||
Reference in New Issue
Block a user