diff options
author | foobar <sniper@php.net> | 2005-02-27 12:50:22 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-02-27 12:50:22 +0000 |
commit | 3f57b46f6740d61554ef5e8590bbe2c831387eee (patch) | |
tree | 6095431ea8b267c8ba7798a3bdbf7ac13a5fc857 | |
parent | dd7d41e93835046c0f0c81a5ff21856c1ae8321b (diff) | |
download | php-git-3f57b46f6740d61554ef5e8590bbe2c831387eee.tar.gz |
cs fix (really annoying :)
-rw-r--r-- | main/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index fd5283702d..b2dd27e066 100644 --- a/main/main.c +++ b/main/main.c @@ -594,7 +594,8 @@ PHPAPI void php_html_puts(const char *str, uint size TSRMLS_DC) /* }}} */ /* {{{ php_suppress_errors */ -PHPAPI void php_set_error_handling(error_handling_t error_handling, zend_class_entry *exception_class TSRMLS_DC) { +PHPAPI void php_set_error_handling(error_handling_t error_handling, zend_class_entry *exception_class TSRMLS_DC) +{ PG(error_handling) = error_handling; PG(exception_class) = exception_class; if (PG(last_error_message)) { |