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/aspell | |
parent | f1fcb022be33716d345197de1fde63ad2bcdafca (diff) | |
download | php-git-a1ad2872eebc17448b115a1817e95b63e3ad17e9.tar.gz |
- The tree compiles again
Diffstat (limited to 'ext/aspell')
-rw-r--r-- | ext/aspell/aspell.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/aspell/aspell.c b/ext/aspell/aspell.c index 6e89125578..d97cd6d04c 100644 --- a/ext/aspell/aspell.c +++ b/ext/aspell/aspell.c @@ -78,7 +78,7 @@ PHP_FUNCTION(aspell_new) int ind; argc = ARG_COUNT(ht); - if (argc < 1 || argc > 2 || getParametersEx(argc,&master,&personal) == FAILURE) { + if (argc < 1 || argc > 2 || zend_get_parameters_ex(argc,&master,&personal) == FAILURE) { WRONG_PARAM_COUNT; } convert_to_string_ex(master); @@ -109,7 +109,7 @@ PHP_FUNCTION(aspell_suggest) argc = ARG_COUNT(ht); - if (argc != 2 || getParametersEx(argc, &scin,&word) == FAILURE) { + if (argc != 2 || zend_get_parameters_ex(argc, &scin,&word) == FAILURE) { WRONG_PARAM_COUNT; } convert_to_long_ex(scin); @@ -143,7 +143,7 @@ PHP_FUNCTION(aspell_check) int argc; argc = ARG_COUNT(ht); - if (argc != 2 || getParametersEx(argc, &scin,&word) == FAILURE) { + if (argc != 2 || zend_get_parameters_ex(argc, &scin,&word) == FAILURE) { WRONG_PARAM_COUNT; } convert_to_long_ex(scin); @@ -175,7 +175,7 @@ PHP_FUNCTION(aspell_check_raw) aspell *sc; argc = ARG_COUNT(ht); - if (argc != 2 || getParametersEx(argc, &scin,&word) == FAILURE) { + if (argc != 2 || zend_get_parameters_ex(argc, &scin,&word) == FAILURE) { WRONG_PARAM_COUNT; } convert_to_long_ex(scin); |