diff options
| author | Dmitry Stogov <dmitry@zend.com> | 2018-07-23 15:24:07 +0300 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@zend.com> | 2018-07-23 15:24:07 +0300 |
| commit | ebd1f5af3efc8134496016a0010f6bf0b7003503 (patch) | |
| tree | 0fd29a1964e2b99a30817064fac645e291fde911 /Zend/zend_operators.c | |
| parent | afc82e243cb7637e2fe0ef21fce736687c615ea2 (diff) | |
| download | php-git-ebd1f5af3efc8134496016a0010f6bf0b7003503.tar.gz | |
API cleanup.
Removed useless filename and lineno arguments, used in DEBUG build.
The patch doesn't break source compatibility of public API (only binary compatibility).
Diffstat (limited to 'Zend/zend_operators.c')
| -rw-r--r-- | Zend/zend_operators.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 10b065bb79..ea3f2e0ba7 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -519,7 +519,7 @@ try_again: } /* }}} */ -ZEND_API void ZEND_FASTCALL _convert_to_cstring(zval *op ZEND_FILE_LINE_DC) /* {{{ */ +ZEND_API void ZEND_FASTCALL _convert_to_cstring(zval *op) /* {{{ */ { if (Z_TYPE_P(op) == IS_DOUBLE) { zend_string *str; @@ -528,12 +528,12 @@ ZEND_API void ZEND_FASTCALL _convert_to_cstring(zval *op ZEND_FILE_LINE_DC) /* { str = zend_strpprintf_unchecked(0, "%.*H", (int) EG(precision), dval); ZVAL_NEW_STR(op, str); } else { - _convert_to_string(op ZEND_FILE_LINE_CC); + _convert_to_string(op); } } /* }}} */ -ZEND_API void ZEND_FASTCALL _convert_to_string(zval *op ZEND_FILE_LINE_DC) /* {{{ */ +ZEND_API void ZEND_FASTCALL _convert_to_string(zval *op) /* {{{ */ { try_again: switch (Z_TYPE_P(op)) { |
