Skip to content

Commit 3b70dc0

Browse files
committed
Fix unused variable warnings
1 parent 2a32c1c commit 3b70dc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/spl/spl_heap.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ SPL_METHOD(SplPriorityQueue, insert)
682682
extract the element out of the top of the priority queue */
683683
SPL_METHOD(SplPriorityQueue, extract)
684684
{
685-
zval value, *value_out;
685+
zval value;
686686
spl_heap_object *intern;
687687

688688
if (zend_parse_parameters_none() == FAILURE) {
@@ -712,7 +712,7 @@ SPL_METHOD(SplPriorityQueue, extract)
712712
Peek at the top element of the priority queue */
713713
SPL_METHOD(SplPriorityQueue, top)
714714
{
715-
zval *value, *value_out;
715+
zval *value;
716716
spl_heap_object *intern;
717717

718718
if (zend_parse_parameters_none() == FAILURE) {

0 commit comments

Comments
 (0)