diff options
Diffstat (limited to 'Zend/zend_ptr_stack.c')
-rw-r--r-- | Zend/zend_ptr_stack.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_ptr_stack.c b/Zend/zend_ptr_stack.c index bb85a2cc26..13afb81caa 100644 --- a/Zend/zend_ptr_stack.c +++ b/Zend/zend_ptr_stack.c @@ -5,7 +5,7 @@ | Copyright (c) 1998-2014 Zend Technologies Ltd. (http://www.zend.com) | +----------------------------------------------------------------------+ | This source file is subject to version 2.00 of the Zend license, | - | that is bundled with this package in the file LICENSE, and is | + | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.zend.com/license/2_00.txt. | | If you did not receive a copy of the Zend license and are unable to | @@ -42,7 +42,7 @@ ZEND_API void zend_ptr_stack_n_push(zend_ptr_stack *stack, int count, ...) { va_list ptr; void *elem; - + ZEND_PTR_STACK_RESIZE_IF_NEEDED(stack, count) va_start(ptr, count); @@ -60,7 +60,7 @@ ZEND_API void zend_ptr_stack_n_pop(zend_ptr_stack *stack, int count, ...) { va_list ptr; void **elem; - + va_start(ptr, count); while (count>0) { elem = va_arg(ptr, void **); |