X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fcrypto%2Fsiphash24%2Fsiphash24.c;fp=ccan%2Fcrypto%2Fsiphash24%2Fsiphash24.c;h=20daa74d32b71fd8c296295a8ed9fba69d4c7d5e;hb=ad2ce76c10f808283ea7cf25cd8e76a15710c4f3;hp=d250de3295418f6f5e127167d0fad0421d13bc87;hpb=5877402640cff05f779b23a730e4cc62d729113f;p=ccan 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);