diff options
author | Anatol Belski <ab@php.net> | 2014-08-27 15:31:48 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-27 20:49:31 +0200 |
commit | 3234480827b27ff5d3469a732167afd289632a96 (patch) | |
tree | 485ed0c4f5d35107a65ab193f3bc7c27806fbfca /ext/intl/formatter/formatter_attr.c | |
parent | ee552b628c2d9f9455ac85d7791b4b4e8e4ddeb2 (diff) | |
download | php-git-3234480827b27ff5d3469a732167afd289632a96.tar.gz |
first show to make 's' work with size_t
Diffstat (limited to 'ext/intl/formatter/formatter_attr.c')
-rw-r--r-- | ext/intl/formatter/formatter_attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/formatter/formatter_attr.c b/ext/intl/formatter/formatter_attr.c index a4810b5e8c..66575696d2 100644 --- a/ext/intl/formatter/formatter_attr.c +++ b/ext/intl/formatter/formatter_attr.c @@ -299,7 +299,7 @@ PHP_FUNCTION( numfmt_set_symbol ) { zend_long symbol; char* value = NULL; - int value_len = 0; + size_t value_len = 0; UChar* svalue = 0; int slength = 0; FORMATTER_METHOD_INIT_VARS; |