mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
Fix typo in crc32.h
This commit is contained in:
parent
e459d27315
commit
08e6840801
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@
|
||||||
* This code implements the AUTODIN II polynomial
|
* This code implements the AUTODIN II polynomial
|
||||||
* The variable corresponding to the macro argument "crc" should
|
* The variable corresponding to the macro argument "crc" should
|
||||||
* be an unsigned long.
|
* 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])
|
#define CRC32(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue