From: Adam Harvey Date: Tue, 15 Jan 2013 02:08:26 +0000 (+0800) Subject: Fix compile failure introduced by the fix for bug #46408. X-Git-Tag: php-5.5.0alpha4~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be1700d467a6875415c292f95040965fb359493c;p=php Fix compile failure introduced by the fix for bug #46408. --- 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; }