projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
acd5803
)
Fix typo in comment.
author
Robert Haas
Fri, 19 Apr 2013 13:32:49 +0000
(09:32 -0400)
committer
Robert Haas
Fri, 19 Apr 2013 13:32:49 +0000
(09:32 -0400)
Fabrízio de Royes Mello
contrib/hstore/crc32.c
patch
|
blob
|
blame
|
history
diff --git
a/contrib/hstore/crc32.c
b/contrib/hstore/crc32.c
index d541d0cc951b15d35fe46ddb9f6fe5c99589cb15..c82fc664723d875c4cf3bf7bda050fa3a9fa27a3 100644
(file)
--- 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.
- * Or
o
ginal code by Spencer Garrett
+ * Or
i
ginal code by Spencer Garrett
*/
#define _CRC32_(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff])