From: Khan M Rashedun-Naby Date: Sat, 17 Mar 2018 11:46:01 +0000 (+0600) Subject: Fix typo in crc32.h X-Git-Tag: php-7.3.0alpha1~143 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08e6840801eb608264a25bd549f9efd8b51d962b;p=php Fix typo in crc32.h --- diff --git a/ext/standard/crc32.h b/ext/standard/crc32.h index f35e5d5530..0ab3ab6b64 100644 --- a/ext/standard/crc32.h +++ b/ext/standard/crc32.h @@ -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 + * Original code by Spencer Garrett */ #define CRC32(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff])