diff options
| author | Zeev Suraski <zeev@php.net> | 1999-12-18 22:40:35 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 1999-12-18 22:40:35 +0000 |
| commit | a1ad2872eebc17448b115a1817e95b63e3ad17e9 (patch) | |
| tree | 6088dc4e590fdc5f85baa8bfe6534aece3fba960 /ext/standard/assert.c | |
| parent | f1fcb022be33716d345197de1fde63ad2bcdafca (diff) | |
| download | php-git-a1ad2872eebc17448b115a1817e95b63e3ad17e9.tar.gz | |
- The tree compiles again
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; } |
