Reformatted.

This commit is contained in:
2016-04-19 02:11:47 +01:00
parent 6a8499f8ed
commit f8bc81d4f5
149 changed files with 6983 additions and 6970 deletions

View File

@@ -62,14 +62,14 @@ namespace DiscImageChef.Decoders.SCSI
{
ushort len = (ushort)((response[0] << 8) + response[1]);
if (len + 2 != response.Length)
if(len + 2 != response.Length)
return null;
List<Capability> caps = new List<Capability>();
uint offset = 4;
while (offset < response.Length)
while(offset < response.Length)
{
Capability cap = new Capability();
cap.FormatCode = response[offset];