Fix unused code.

This commit is contained in:
2020-07-20 07:47:12 +01:00
parent da452ea834
commit 0e7a86880e
149 changed files with 344 additions and 129 deletions

View File

@@ -197,7 +197,7 @@ namespace Aaru.Filesystems.FAT
while(pos < eaData.Length)
{
byte fEA = eaData[pos++];
pos++; // Skip fEA
byte cbName = eaData[pos++];
ushort cbValue = BitConverter.ToUInt16(eaData, pos);
pos += 2;