aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2013-04-19 09:32:49 -0400
committerRobert Haas <rhaas@postgresql.org>2013-04-19 09:32:49 -0400
commit4580a4bd2c858acf85c578609b8373d730a04534 (patch)
tree2dd9fc3c8248f03ae49d74e7c3163610139a6f5d
parentacd5803053eb5ff6ad055ac1f7670625f1d111e0 (diff)
downloadpostgresql-4580a4bd2c858acf85c578609b8373d730a04534.tar.gz
postgresql-4580a4bd2c858acf85c578609b8373d730a04534.zip
Fix typo in comment.
Fabrízio de Royes Mello
-rw-r--r--contrib/hstore/crc32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hstore/crc32.c b/contrib/hstore/crc32.c
index d541d0cc951..c82fc664723 100644
--- a/contrib/hstore/crc32.c
+++ b/contrib/hstore/crc32.c
@@ -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])