X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Forder%2Forder.c;h=5ff85a987fec66fd5c55aa89d3a18ba5bcd9020c;hb=ed6dd33e06c0e8f1c4dd006e0b70d9f2d6ba6c09;hp=863a8e16e1425803621ee0bc68e37ee376693f20;hpb=37825438b65879dad1a343b45bb5ce9fc37ba8e7;p=ccan diff --git a/ccan/order/order.c b/ccan/order/order.c index 863a8e16..5ff85a98 100644 --- a/ccan/order/order.c +++ b/ccan/order/order.c @@ -24,7 +24,7 @@ const _type *b, \ void *ctx) \ { \ - return _order_##_oname(a, b, int2ptr(0)); \ + (void)ctx; return _order_##_oname(a, b, int2ptr(0)); \ } \ int _order_##_oname##_reverse(const void *a, \ const void *b, \ @@ -36,6 +36,7 @@ const _type *b, \ void *ctx) \ { \ + (void)ctx; \ return _order_##_oname##_reverse(a, b, int2ptr(0)); \ } \ int order_##_oname##_noctx(const void *a, \