diff options
author | Anatol Belski <ab@php.net> | 2014-08-25 21:26:42 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-25 21:26:42 +0200 |
commit | b9514bb8fd27e2d841bab3eb256fcbaa613aa049 (patch) | |
tree | 9cc82a1898cad7b2e92b4fe8362b02ab5ce3161a /ext/pspell | |
parent | 28b7a033185478839c511551ce2344e459e7f880 (diff) | |
download | php-git-b9514bb8fd27e2d841bab3eb256fcbaa613aa049.tar.gz |
master renames phase 6
Diffstat (limited to 'ext/pspell')
-rw-r--r-- | ext/pspell/pspell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pspell/pspell.c b/ext/pspell/pspell.c index ff97306ecf..c7994ea73f 100644 --- a/ext/pspell/pspell.c +++ b/ext/pspell/pspell.c @@ -265,7 +265,7 @@ static PHP_FUNCTION(pspell_new) { char *language, *spelling = NULL, *jargon = NULL, *encoding = NULL; int language_len, spelling_len = 0, jargon_len = 0, encoding_len = 0; - zend_long mode = Z_I(0), speed = Z_I(0); + zend_long mode = Z_L(0), speed = Z_L(0); int argc = ZEND_NUM_ARGS(); zval *ind; @@ -362,7 +362,7 @@ static PHP_FUNCTION(pspell_new_personal) { char *personal, *language, *spelling = NULL, *jargon = NULL, *encoding = NULL; int personal_len, language_len, spelling_len = 0, jargon_len = 0, encoding_len = 0; - zend_long mode = Z_I(0), speed = Z_I(0); + zend_long mode = Z_L(0), speed = Z_L(0); int argc = ZEND_NUM_ARGS(); zval *ind; |