diff options
Diffstat (limited to 'ext/standard/assert.c')
| -rw-r--r-- | ext/standard/assert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/assert.c b/ext/standard/assert.c index 87d5222679..e771e31dca 100644 --- a/ext/standard/assert.c +++ b/ext/standard/assert.c @@ -174,7 +174,7 @@ PHP_FUNCTION(assert) RETURN_TRUE; } - if (ARG_COUNT(ht) != 1 || getParametersEx(1, &assertion) == FAILURE) { + if (ARG_COUNT(ht) != 1 || zend_get_parameters_ex(1, &assertion) == FAILURE) { WRONG_PARAM_COUNT; } @@ -279,7 +279,7 @@ PHP_FUNCTION(assert_options) int ac = ARG_COUNT(ht); ASSERTLS_FETCH(); - if (ac < 1 || ac > 2 || getParametersEx(ac, &what, &value) == FAILURE) { + if (ac < 1 || ac > 2 || zend_get_parameters_ex(ac, &what, &value) == FAILURE) { WRONG_PARAM_COUNT; } |
