commit 293d1cec14439566ceed181fb397381d471a6c66
parent 29ab643ecf1ac0f8344d05e850710e7808850659
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Sun, 24 Dec 2017 13:10:48 +0100
sfeed_mbox: make murmur3_32 static
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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;