made ZEND_TSRMLS_CACHE_* macros look like function calls

which also comply with the current semantics for such macros
This commit is contained in:
Anatol Belski 2015-02-16 17:19:32 +01:00
parent 812c0c0337
commit af3ca74501
63 changed files with 109 additions and 109 deletions

View file

@ -80,7 +80,7 @@ extern zend_module_entry apache2_module_entry;
#ifdef ZTS
extern int php_apache2_info_id;
#define AP2(v) ZEND_TSRMG(php_apache2_info_id, php_apache2_info_struct *, v)
ZEND_TSRMLS_CACHE_EXTERN;
ZEND_TSRMLS_CACHE_EXTERN();
#else
extern php_apache2_info_struct php_apache2_info;
#define AP2(v) (php_apache2_info.v)