diff options
Diffstat (limited to 'src/crypto/siphash24.h')
-rw-r--r-- | src/crypto/siphash24.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/siphash24.h b/src/crypto/siphash24.h index ec893bd..f06a87c 100644 --- a/src/crypto/siphash24.h +++ b/src/crypto/siphash24.h @@ -7,7 +7,7 @@ enum siphash24_lengths { SIPHASH24_KEY_LEN = 16 }; -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]); #ifdef DEBUG bool siphash24_selftest(void); |