summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/spl/spl_heap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/spl_heap.c b/ext/spl/spl_heap.c
index e3e0b4817b..e49982fabe 100644
--- a/ext/spl/spl_heap.c
+++ b/ext/spl/spl_heap.c
@@ -682,7 +682,7 @@ SPL_METHOD(SplPriorityQueue, insert)
extract the element out of the top of the priority queue */
SPL_METHOD(SplPriorityQueue, extract)
{
- zval value, *value_out;
+ zval value;
spl_heap_object *intern;
if (zend_parse_parameters_none() == FAILURE) {
@@ -712,7 +712,7 @@ SPL_METHOD(SplPriorityQueue, extract)
Peek at the top element of the priority queue */
SPL_METHOD(SplPriorityQueue, top)
{
- zval *value, *value_out;
+ zval *value;
spl_heap_object *intern;
if (zend_parse_parameters_none() == FAILURE) {