summaryrefslogtreecommitdiff
path: root/Zend/zend_exceptions.c
diff options
context:
space:
mode:
authorXinchen Hui <laruence@php.net>2015-04-14 19:32:01 +0800
committerXinchen Hui <laruence@php.net>2015-04-14 19:32:01 +0800
commit4b27569dc3c684bf1d936cf4373d6aab1affca84 (patch)
tree07ebee2b3c9777d1bdf33d6ee466a6cf99e770ba /Zend/zend_exceptions.c
parent043f8ac51e8fea81ae4aa0751e16913496cb1286 (diff)
downloadphp-git-4b27569dc3c684bf1d936cf4373d6aab1affca84.tar.gz
codes standard
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r--Zend/zend_exceptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c
index f163495906..3e50422e4b 100644
--- a/Zend/zend_exceptions.c
+++ b/Zend/zend_exceptions.c
@@ -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);