diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2017-12-24 13:10:48 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2017-12-24 13:16:32 +0100 |
commit | 293d1cec14439566ceed181fb397381d471a6c66 (patch) | |
tree | 73adc4da80200196a20175d68b2291fc45828835 | |
parent | 29ab643ecf1ac0f8344d05e850710e7808850659 (diff) |
sfeed_mbox: make murmur3_32 static
-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; |