X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=src%2Fphp_http_negotiate.c;h=3a5548ea0de0b35d9b54e5d616d652a4e920da7d;hp=cd09d3740f6dc8e293b72b3dbb742b096cca58ca;hb=4d376d38ec260d4fd467bb95b41451bf645d92e4;hpb=650b04d44f7ab3a5325865d9ffa10a5245ac7eca diff --git a/src/php_http_negotiate.c b/src/php_http_negotiate.c index cd09d37..3a5548e 100644 --- a/src/php_http_negotiate.c +++ b/src/php_http_negotiate.c @@ -16,9 +16,8 @@ # define PHP_HTTP_DEBUG_NEG 0 #endif -static int php_http_negotiate_sort(const void *first, const void *second) +static int php_http_negotiate_sort(Bucket *b1, Bucket *b2) { - Bucket *b1 = (Bucket *) first, *b2 = (Bucket *) second; int result = numeric_compare_function(&b1->val, &b2->val); return (result > 0 ? -1 : (result < 0 ? 1 : 0));