X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fcrypto%2Fsiphash24%2Fsiphash24.c;h=20daa74d32b71fd8c296295a8ed9fba69d4c7d5e;hp=d250de3295418f6f5e127167d0fad0421d13bc87;hb=4bb69fe6d568f84bd682cf6f86bae168313deb91;hpb=e22c782f26cb11593300478da853fa325ed2b99a diff --git a/ccan/crypto/siphash24/siphash24.c b/ccan/crypto/siphash24/siphash24.c index d250de32..20daa74d 100644 --- a/ccan/crypto/siphash24/siphash24.c +++ b/ccan/crypto/siphash24/siphash24.c @@ -45,6 +45,7 @@ static void check_siphash24(struct siphash24_ctx *ctx) static bool alignment_ok(const void *p, size_t n) { #if HAVE_UNALIGNED_ACCESS + (void)p; (void)n; return true; #else return ((size_t)p % n == 0);