diff options
author | Nuno Lopes <nlopess@php.net> | 2012-08-02 11:44:15 +0100 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2012-08-02 06:53:09 -0400 |
commit | aa8eabddd662fe286c08af014384692e03c093a9 (patch) | |
tree | 98ba7ebe924aef82abb76b8f897f3e8154abbb7f /Zend/zend_exceptions.c | |
parent | 53c8612fe780a80fde64da118587e6096b16b595 (diff) | |
download | php-git-aa8eabddd662fe286c08af014384692e03c093a9.tar.gz |
make default_exception_ce and error_exception_ce static
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r-- | Zend/zend_exceptions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 7bb7792a4c..787e66bfe9 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -29,8 +29,8 @@ #include "zend_vm.h" #include "zend_dtrace.h" -zend_class_entry *default_exception_ce; -zend_class_entry *error_exception_ce; +static zend_class_entry *default_exception_ce; +static zend_class_entry *error_exception_ce; static zend_object_handlers default_exception_handlers; ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC); |