Commit:    82cd3779f4644a903b6dbbc966e72ebc54c9d694
Author:    Bob Weinand <bobw...@hotmail.com>         Fri, 1 Nov 2013 16:49:23 
+0100
Parents:   b45043a1b71c29a0c7b8de9e4929dde08bd61216
Branches:  PHP-5.6

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=82cd3779f4644a903b6dbbc966e72ebc54c9d694

Log:
Whitespace fix

Changed paths:
  M  Zend/zend_API.c


Diff:
diff --git a/Zend/zend_API.c b/Zend/zend_API.c
index b414b52..3687b6a 100644
--- a/Zend/zend_API.c
+++ b/Zend/zend_API.c
@@ -1066,7 +1066,7 @@ static int zval_update_class_constant(zval **pp, int 
is_static, int offset TSRML
                                     
zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop_info, &pos) 
== SUCCESS;
                                     
zend_hash_move_forward_ex(&ce->properties_info, &pos)) {
                                        if (is_static == ((prop_info->flags & 
ZEND_ACC_STATIC) != 0) &&
-                                                   offset == 
prop_info->offset) {
+                                           offset == prop_info->offset) {
                                                int ret;
                                                zend_class_entry *old_scope = 
*scope;
                                                *scope = prop_info->ce;
@@ -1078,7 +1078,7 @@ static int zval_update_class_constant(zval **pp, int 
is_static, int offset TSRML
                                ce = ce->parent;
                        } while (ce);
 
-                       }
+               }
                return zval_update_constant(pp, (void*)1 TSRMLS_CC);
        }
        return 0;


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to