diff options
author | Reeze Xia <reeze@php.net> | 2015-03-08 19:24:50 +0800 |
---|---|---|
committer | Reeze Xia <reeze@php.net> | 2015-03-08 19:25:55 +0800 |
commit | 609f05fc19864384fe03a4b97ad263cc0aaf32a0 (patch) | |
tree | 0639ad2ab04698e5f7187ab2b068f5c88286b1cf /ext/pcre/php_pcre.c | |
parent | 0cb869d908ab0427ede6596009176c22b43a2aae (diff) | |
download | php-git-609f05fc19864384fe03a4b97ad263cc0aaf32a0.tar.gz |
ZTS cleanup
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 502ec57f42..27440bb490 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -1055,7 +1055,7 @@ PHPAPI zend_string *php_pcre_replace_impl(pcre_cache_entry *pce, zend_string *su extra->match_limit_recursion = (unsigned long)PCRE_G(recursion_limit); if (pce->preg_options & PREG_REPLACE_EVAL) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "The /e modifier is no longer supported, use preg_replace_callback instead"); + php_error_docref(NULL, E_WARNING, "The /e modifier is no longer supported, use preg_replace_callback instead"); return NULL; } if (!is_callable_replace) { |