diff options
author | krakjoe <joe.watkins@live.co.uk> | 2014-08-11 06:47:09 +0100 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2014-08-11 06:47:09 +0100 |
commit | 1d01e2334cc6749d0af0164d578e6307b5f92323 (patch) | |
tree | d42b6220a917d666158bbecbf63abdb9e3d309a1 | |
parent | dc70139d85cc5476523bfcfbefa44f3ec35e8db5 (diff) | |
download | php-git-1d01e2334cc6749d0af0164d578e6307b5f92323.tar.gz |
fix incorrect cast of comparison function and signature of function
-rw-r--r-- | Zend/zend_operators.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index c34b5c7f32..403eb7c290 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -1888,10 +1888,9 @@ ZEND_API int compare_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* { } /* }}} */ -static int hash_zval_identical_function(zval *z1, zval *z2) /* {{{ */ +static int hash_zval_identical_function(zval *z1, zval *z2 TSRMLS_DC) /* {{{ */ { zval result; - TSRMLS_FETCH(); /* is_identical_function() returns 1 in case of identity and 0 in case * of a difference; |