diff options
author | Stanislav Malyshev <stas@php.net> | 2016-11-27 16:11:41 -0800 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2016-11-27 16:11:41 -0800 |
commit | c8778eb29346c2516620aee127789c8b3161a4f8 (patch) | |
tree | ff89bfdeca6da0eeceaf445decb9c4e058fddc98 /ext/intl/grapheme/grapheme_string.c | |
parent | 36d02a36aea48c1f3871a53f1503dccf074a906e (diff) | |
download | php-git-c8778eb29346c2516620aee127789c8b3161a4f8.tar.gz |
oops, changed in wrong place
Diffstat (limited to 'ext/intl/grapheme/grapheme_string.c')
-rw-r--r-- | ext/intl/grapheme/grapheme_string.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/intl/grapheme/grapheme_string.c b/ext/intl/grapheme/grapheme_string.c index d298bab98b..6d1ff61be5 100644 --- a/ext/intl/grapheme/grapheme_string.c +++ b/ext/intl/grapheme/grapheme_string.c @@ -800,9 +800,9 @@ PHP_FUNCTION(grapheme_extract) { char *str, *pstr; UText ut = UTEXT_INITIALIZER; - size_t str_len; - zend_long size; /* maximum number of grapheme clusters, bytes, or characters (based on extract_type) to return */ - zend_long lstart = 0; /* starting position in str in bytes */ + int str_len; + long size; /* maximum number of grapheme clusters, bytes, or characters (based on extract_type) to return */ + long lstart = 0; /* starting position in str in bytes */ int32_t start = 0; long extract_type = GRAPHEME_EXTRACT_TYPE_COUNT; UErrorCode status; |