]> git.ozlabs.org Git - ccan/blobdiff - ccan/htable/test/run-size.c
Mark unused arguments in many modules.
[ccan] / ccan / htable / test / run-size.c
index 5b3263895ca83ad28bcb3312122c4bb3c056be41..1a2f5cdd1ef8cbbfc1ab84f8221b5bb61b9734ab 100644 (file)
@@ -8,7 +8,7 @@
 
 /* We use the number divided by two as the hash (for lots of
    collisions). */
-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;
        return h;