From be1700d467a6875415c292f95040965fb359493c Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Tue, 15 Jan 2013 10:08:26 +0800 Subject: [PATCH] Fix compile failure introduced by the fix for bug #46408. --- Zend/zend_operators.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 274893c70ae..c8b868d16a8 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; }