Skip to content

Commit

Permalink
Merge pull request #2146 from yahiheb/name-violation
Browse files Browse the repository at this point in the history
Fix name violation
  • Loading branch information
lontivero committed Aug 22, 2019
2 parents 7c713b6 + 9a4db34 commit 5f8e127
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ internal static BitList FillECCodewords(BitList dataCodewords, VersionDetail vd)
}
}

for (int ECID = 0; ECID < ecBytesPerBlock; ECID++)
for (int ecId = 0; ecId < ecBytesPerBlock; ecId++)
{
for (int blockId = 0; blockId < vd.NumECBlocks; blockId++)
{
codewords.Add(ecByteJArray[blockId][ECID], 8);
codewords.Add(ecByteJArray[blockId][ecId], 8);
}
}

Expand Down

0 comments on commit 5f8e127

Please sign in to comment.