diff options
author | Adam Harvey <aharvey@php.net> | 2013-01-15 10:08:26 +0800 |
---|---|---|
committer | Adam Harvey <aharvey@php.net> | 2013-01-15 10:08:26 +0800 |
commit | be1700d467a6875415c292f95040965fb359493c (patch) | |
tree | 11044f9dc92585bdec551cbc122a483ce99748cb | |
parent | 3ea2b73a30885c8fe308b7103442373cbb8d1543 (diff) | |
download | php-git-be1700d467a6875415c292f95040965fb359493c.tar.gz |
Fix compile failure introduced by the fix for bug #46408.
-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 274893c70a..c8b868d16a 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -584,7 +584,7 @@ ZEND_API void _convert_to_cstring(zval *op ZEND_FILE_LINE_DC) /* {{{ */ break; } default: - return _convert_to_string(op); + _convert_to_string(op ZEND_FILE_LINE_CC); } Z_TYPE_P(op) = IS_STRING; } |