Browse Source

oops, changed in wrong place

pull/1500/merge
Stanislav Malyshev 10 years ago
parent
commit
c8778eb293
  1. 6
      ext/intl/grapheme/grapheme_string.c

6
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;

Loading…
Cancel
Save