aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/siphash24.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/siphash24.c')
-rw-r--r--src/crypto/siphash24.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/siphash24.c b/src/crypto/siphash24.c
index 1203d90..7395413 100644
--- a/src/crypto/siphash24.c
+++ b/src/crypto/siphash24.c
@@ -16,7 +16,7 @@
} while(0)
__attribute__((optimize("unroll-loops")))
-uint64_t siphash24(const uint8_t *data, size_t len, const uint8_t key[static SIPHASH24_KEY_LEN])
+uint64_t siphash24(const uint8_t *data, size_t len, const uint8_t key[SIPHASH24_KEY_LEN])
{
uint64_t v0 = 0x736f6d6570736575ULL;
uint64_t v1 = 0x646f72616e646f6dULL;