Code restyling.

This commit is contained in:
2020-02-29 18:03:33 +00:00
parent 9abc956373
commit a43b4132ee
40 changed files with 2701 additions and 2473 deletions

View File

@@ -38,11 +38,11 @@ namespace Aaru.Decoders.SecureDigital
{
switch(sdVendorId)
{
case 0x02: return"Kingston";
case 0x03: return"Sandisk";
case 0x27: return"CnMemory";
case 0xAA: return"QEMU";
default: return$"Unknown manufacturer ID 0x{sdVendorId:X2}";
case 0x02: return "Kingston";
case 0x03: return "Sandisk";
case 0x27: return "CnMemory";
case 0xAA: return "QEMU";
default: return $"Unknown manufacturer ID 0x{sdVendorId:X2}";
}
}
}