diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-27 10:10:39 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-27 10:10:39 +0000 |
commit | 2c254ba762d9392a732d5793b5b193ee6e395f1c (patch) | |
tree | 1b3d5bd700222f3bb7387b698be9647525d33573 /Zend/zend_operators.c | |
parent | 736b4ae43d3f37fda450f6fcd67286a3bfed4fb6 (diff) | |
download | php-git-2c254ba762d9392a732d5793b5b193ee6e395f1c.tar.gz |
Get rid of ELS_*(), and use TSRMLS_*() instead.
This patch is *bound* to break some files, as I must have had typos somewhere.
If you use any uncommon extension, please try to build it...
Diffstat (limited to 'Zend/zend_operators.c')
-rw-r--r-- | Zend/zend_operators.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 5574748125..30c8f507f0 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -411,7 +411,7 @@ ZEND_API void _convert_to_string(zval *op ZEND_FILE_LINE_DC) { long lval; double dval; - ELS_FETCH(); + TSRMLS_FETCH(); switch (op->type) { case IS_NULL: |