X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fasearch%2Fasearch.h;h=8e317b47cf4d110a88d57815e7cce83bc18fb5fe;hb=610686a9c31ee04adc170f2f13b5d2bb6432a118;hp=2c28ab1c1d89d5f6956f7a0e417f1ca1e15be364;hpb=93d1e1063c6b5599ab334398234d2de05c1236e8;p=ccan diff --git a/ccan/asearch/asearch.h b/ccan/asearch/asearch.h index 2c28ab1c..8e317b47 100644 --- a/ccan/asearch/asearch.h +++ b/ccan/asearch/asearch.h @@ -23,10 +23,10 @@ #if HAVE_TYPEOF #define asearch(key, base, num, cmp) \ ((__typeof__(*(base))*)(bsearch((key), (base), (num), sizeof(*(base)), \ - cast_if_type((cmp), \ - int (*)(const __typeof__(*(key)) *, \ - const __typeof__(*(base)) *), \ - int (*)(const void *, const void *))))) + cast_if_type(int (*)(const void *, const void *), \ + (cmp), \ + int (*)(const __typeof__(*(key)) *, \ + const __typeof__(*(base)) *))))) #else #define asearch(key, base, num, cmp) \ (bsearch((key), (base), (num), sizeof(*(base)), \