diff options
Diffstat (limited to 'ext/unicode/unicode.c')
-rw-r--r-- | ext/unicode/unicode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/unicode/unicode.c b/ext/unicode/unicode.c index 1ea442ee47..a445f4e31a 100644 --- a/ext/unicode/unicode.c +++ b/ext/unicode/unicode.c @@ -38,7 +38,7 @@ static PHP_FUNCTION(unicode_decode) UErrorCode status; UConverter *conv = NULL; UChar *target; - int32_t targetlen; + int targetlen; if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ts", &input.vptr, &len, &type, &encoding, &enclen)) { return; @@ -87,7 +87,7 @@ static PHP_FUNCTION(unicode_encode) UErrorCode status; UConverter *conv = NULL; char *target; - int32_t targetlen; + int targetlen; if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "us", &uni, &len, &encoding, &enclen)) { return; |