Fix typo in comment.

Fabrízio de Royes Mello
pull/4/head
Robert Haas 12 years ago
parent acd5803053
commit 4580a4bd2c
  1. 2
      contrib/hstore/crc32.c

@ -13,7 +13,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…
Cancel
Save