Skip to content
Snippets Groups Projects
Commit 4580a4bd authored by Robert Haas's avatar Robert Haas
Browse files

Fix typo in comment.

Fabrízio de Royes Mello
parent acd58030
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,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])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment