]> granicus.if.org Git - php/commitdiff
Fix typo in crc32.h
authorKhan M Rashedun-Naby <naby88@gmail.com>
Sat, 17 Mar 2018 11:46:01 +0000 (17:46 +0600)
committerNikita Popov <nikita.ppv@gmail.com>
Fri, 23 Mar 2018 18:05:15 +0000 (19:05 +0100)
ext/standard/crc32.h

index f35e5d5530a27966ac53d928ccdd8a77ef8406b9..0ab3ab6b642837f6990d532189e52988075af5eb 100644 (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])