Commit 1d3166d3 authored by Bruce Momjian's avatar Bruce Momjian

compile cleanup

parent f1cdcffb
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashfunc.c,v 1.15 1999/03/14 16:25:07 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/access/hash/hashfunc.c,v 1.16 1999/03/14 16:27:59 momjian Exp $
* *
* NOTES * NOTES
* These functions are stored in pg_amproc. For each operator class * These functions are stored in pg_amproc. For each operator class
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include "postgres.h" #include "postgres.h"
#include "access/hash.h" #include "access/hash.h"
#include "utils/int8.h"
uint32 uint32
hashint2(int16 key) hashint2(int16 key)
...@@ -35,7 +36,7 @@ hashint4(uint32 key) ...@@ -35,7 +36,7 @@ hashint4(uint32 key)
uint32 uint32
hashint8(int64 *key) hashint8(int64 *key)
{ {
return ~((uint32)key); return ~((uint32)*key);
} }
/* Hash function from Chris Torek. */ /* Hash function from Chris Torek. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment