Fix typo in crc32.h

This commit is contained in:
Khan M Rashedun-Naby 2018-03-17 17:46:01 +06:00 committed by Nikita Popov
parent e459d27315
commit 08e6840801

View file

@ -22,7 +22,7 @@
* This code implements the AUTODIN II polynomial
* The variable corresponding to the macro argument "crc" should
* be an unsigned long.
* Oroginal code by Spencer Garrett <srg@quick.com>
* Original code by Spencer Garrett <srg@quick.com>
*/
#define CRC32(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff])