From: Moriyoshi Koizumi Date: Sun, 20 Jul 2008 12:47:34 +0000 (+0000) Subject: - WS fix X-Git-Tag: php-5.3.0alpha1~267 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91fba3893b79ff8ec6b2bab36956d2bbd5de1882;p=php - WS fix --- diff --git a/Zend/zend_variables.h b/Zend/zend_variables.h index da7eee4344..e12e5f8656 100644 --- a/Zend/zend_variables.h +++ b/Zend/zend_variables.h @@ -13,7 +13,7 @@ | license@zend.com so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Andi Gutmans | - | Zeev Suraski | + | Zeev Suraski | +----------------------------------------------------------------------+ */ @@ -29,9 +29,9 @@ ZEND_API void _zval_dtor_func(zval *zvalue ZEND_FILE_LINE_DC); static inline void _zval_dtor(zval *zvalue ZEND_FILE_LINE_DC) { - if (zvalue->type <= IS_BOOL) { - return; - } + if (zvalue->type <= IS_BOOL) { + return; + } _zval_dtor_func(zvalue ZEND_FILE_LINE_CC); } @@ -39,9 +39,9 @@ ZEND_API void _zval_copy_ctor_func(zval *zvalue ZEND_FILE_LINE_DC); static inline void _zval_copy_ctor(zval *zvalue ZEND_FILE_LINE_DC) { - if (zvalue->type <= IS_BOOL) { - return; - } + if (zvalue->type <= IS_BOOL) { + return; + } _zval_copy_ctor_func(zvalue ZEND_FILE_LINE_CC); }