]> git.ozlabs.org Git - ccan/blobdiff - ccan/crypto/siphash24/siphash24.c
Mark unused arguments in many modules.
[ccan] / ccan / crypto / siphash24 / siphash24.c
index d250de3295418f6f5e127167d0fad0421d13bc87..20daa74d32b71fd8c296295a8ed9fba69d4c7d5e 100644 (file)
@@ -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);