Skip to content

Commit be1700d

Browse files
committed
Fix compile failure introduced by the fix for bug #46408.
1 parent 3ea2b73 commit be1700d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_operators.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ ZEND_API void _convert_to_cstring(zval *op ZEND_FILE_LINE_DC) /* {{{ */
584584
break;
585585
}
586586
default:
587-
return _convert_to_string(op);
587+
_convert_to_string(op ZEND_FILE_LINE_CC);
588588
}
589589
Z_TYPE_P(op) = IS_STRING;
590590
}

0 commit comments

Comments
 (0)