diff options
-rw-r--r-- | sfeed_mbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_mbox.c b/sfeed_mbox.c index 995890b..fa1336d 100644 --- a/sfeed_mbox.c +++ b/sfeed_mbox.c @@ -18,7 +18,7 @@ static const uint32_t seed = 1167266473; #define ROT32(x, y) ((x << y) | (x >> (32 - y))) -uint32_t +static uint32_t murmur3_32(const char *key, uint32_t len, uint32_t seed) { static const uint32_t c1 = 0xcc9e2d51; |