]> granicus.if.org Git - php/commitdiff
codes standard
authorXinchen Hui <laruence@php.net>
Tue, 14 Apr 2015 11:32:01 +0000 (19:32 +0800)
committerXinchen Hui <laruence@php.net>
Tue, 14 Apr 2015 11:32:01 +0000 (19:32 +0800)
Zend/zend_exceptions.c

index f163495906074cba98a7d5a7bf090d85b91e7d86..3e50422e4b65ed8b25f034a8f3093a393b907bbf 100644 (file)
@@ -591,7 +591,7 @@ ZEND_METHOD(exception, getTraceAsString)
        str = &res;
 
        trace = zend_read_property(default_exception_ce, getThis(), "trace", sizeof("trace")-1, 1 TSRMLS_CC);
-       if(Z_TYPE_P(trace) != IS_ARRAY) {
+       if (Z_TYPE_P(trace) != IS_ARRAY) {
                RETURN_FALSE;
        }
        zend_hash_apply_with_arguments(Z_ARRVAL_P(trace) TSRMLS_CC, (apply_func_args_t)_build_trace_string, 3, str, len, &num);