summaryrefslogtreecommitdiff
path: root/Zend/zend_ini.c
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_ini.c')
-rw-r--r--Zend/zend_ini.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c
index b33161cc74..a2344653bc 100644
--- a/Zend/zend_ini.c
+++ b/Zend/zend_ini.c
@@ -171,14 +171,8 @@ ZEND_API int zend_copy_ini_directives(void) /* {{{ */
/* }}} */
#endif
-static int ini_key_compare(const void *a, const void *b) /* {{{ */
+static int ini_key_compare(Bucket *f, Bucket *s) /* {{{ */
{
- const Bucket *f;
- const Bucket *s;
-
- f = (const Bucket *) a;
- s = (const Bucket *) b;
-
if (!f->key && !s->key) { /* both numeric */
if (f->h > s->h) {
return -1;