]> granicus.if.org Git - php/commitdiff
Fix compile failure introduced by the fix for bug #46408.
authorAdam Harvey <aharvey@php.net>
Tue, 15 Jan 2013 02:08:26 +0000 (10:08 +0800)
committerAdam Harvey <aharvey@php.net>
Tue, 15 Jan 2013 02:08:26 +0000 (10:08 +0800)
Zend/zend_operators.c

index 274893c70ae79b7490ed60630968275f86a2a89f..c8b868d16a809f043842e7bdd8473459dce1acc6 100644 (file)
@@ -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;
 }