Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
differentrain committed Oct 16, 2018
1 parent a84a6ad commit cbe0519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XXHash/ConsoleSample/Crc32C.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ protected override void HashCore(byte[] array, int ibStart, int cbSize)
var curPtr = buf;
while (cbSize-- > 0)
{
_Hash = (_Hash >> 8) ^ _Crc32CTable[(_Hash ^ *curPtr++) & 0xFF];
_Hash = (_Hash >> 8) ^ table[(_Hash ^ *curPtr++) & 0xFF];
}
}
}
Expand Down

0 comments on commit cbe0519

Please sign in to comment.