]> git.ozlabs.org Git - ccan/blobdiff - ccan/htable/test/run.c
Mark unused arguments in many modules.
[ccan] / ccan / htable / test / run.c
index 98f208717c74ec284df105dfa3797afba4ab6065..46514c7202f2438b54b15aca2f9c0800ca5f5dd4 100644 (file)
@@ -10,7 +10,7 @@
 /* We use the number divided by two as the hash (for lots of
    collisions), plus set all the higher bits so we can detect if they
    don't get masked out. */
-static size_t hash(const void *elem, void *unused)
+static size_t hash(const void *elem, void *unused UNNEEDED)
 {
        size_t h = *(uint64_t *)elem / 2;
        h |= -1UL << NUM_BITS;