diff options
author | Nikita Popov <nikic@php.net> | 2016-03-03 16:46:04 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-03-03 16:50:01 +0100 |
commit | 1ac152938cfe40e98b7b3c8cf403abb113266cfa (patch) | |
tree | dd2f32f9075d3ca31946c5b9d10a464a07776c3a /ext/interbase | |
parent | c4b188871e7abb7c6cc20d05ceda4cea082efcd2 (diff) | |
download | php-git-1ac152938cfe40e98b7b3c8cf403abb113266cfa.tar.gz |
Move semicolon into TSRMLS_CACHE_EXTERN/DEFINE
Also re bug #71575.
Diffstat (limited to 'ext/interbase')
-rw-r--r-- | ext/interbase/interbase.c | 2 | ||||
-rw-r--r-- | ext/interbase/php_ibase_includes.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index b4c253838e..d1174cf576 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -461,7 +461,7 @@ zend_module_entry ibase_module_entry = { #ifdef COMPILE_DL_INTERBASE #ifdef ZTS -ZEND_TSRMLS_CACHE_DEFINE(); +ZEND_TSRMLS_CACHE_DEFINE() #endif ZEND_GET_MODULE(ibase) #endif diff --git a/ext/interbase/php_ibase_includes.h b/ext/interbase/php_ibase_includes.h index 860f94b876..e2000c1c5f 100644 --- a/ext/interbase/php_ibase_includes.h +++ b/ext/interbase/php_ibase_includes.h @@ -130,7 +130,7 @@ enum php_interbase_option { #define IBG(v) ZEND_MODULE_GLOBALS_ACCESSOR(ibase, v) #if defined(ZTS) && defined(COMPILE_DL_INTERBASE) -ZEND_TSRMLS_CACHE_EXTERN(); +ZEND_TSRMLS_CACHE_EXTERN() #endif #define BLOB_ID_LEN 18 |