summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorKhan M Rashedun-Naby <naby88@gmail.com>2018-03-17 17:46:01 +0600
committerNikita Popov <nikita.ppv@gmail.com>2018-03-23 19:05:15 +0100
commit08e6840801eb608264a25bd549f9efd8b51d962b (patch)
treed5633d63ebb6438582a21cf59bb5fc05388dccaf /ext
parente459d2731503bf1567bfc50836f70ebc56222f4b (diff)
downloadphp-git-08e6840801eb608264a25bd549f9efd8b51d962b.tar.gz
Fix typo in crc32.h
Diffstat (limited to 'ext')
-rw-r--r--ext/standard/crc32.h2
1 files changed, 1 insertions, 1 deletions
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 <srg@quick.com>
+ * Original code by Spencer Garrett <srg@quick.com>
*/
#define CRC32(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff])