diff --git a/sqlext/sqlext.c b/sqlext/sqlext.c index 3529e6fb..da993b24 100644 --- a/sqlext/sqlext.c +++ b/sqlext/sqlext.c @@ -42,7 +42,7 @@ SQLITE_EXTENSION_INIT1 #if SIZEOF_VOID_P == 8 /* 64bit platforms */ -uint64_t +static uint64_t murmur_hash64(const void *key, int len, uint32_t seed) { const int r = 47; @@ -100,7 +100,7 @@ murmur_hash64(const void *key, int len, uint32_t seed) #elif SIZEOF_VOID_P == 4 /* 32bit platforms */ -uint64_t +static uint64_t murmur_hash64(const void *key, int len, uint32_t seed) { const int r = 24;