diff options
author | Anatol Belski <ab@php.net> | 2014-08-27 19:25:28 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-27 20:49:36 +0200 |
commit | 6db8d4f829553f61822a794f94c55270e5478a13 (patch) | |
tree | 03a63a6e8bf452020d20b1963dd064fed95dc446 /ext/intl/msgformat/msgformat_parse.c | |
parent | bdc4f235179abb3f1fac08144a875d3cc9e0a242 (diff) | |
download | php-git-6db8d4f829553f61822a794f94c55270e5478a13.tar.gz |
's' works with size_t round 3
Diffstat (limited to 'ext/intl/msgformat/msgformat_parse.c')
-rw-r--r-- | ext/intl/msgformat/msgformat_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/msgformat/msgformat_parse.c b/ext/intl/msgformat/msgformat_parse.c index 691a2a2518..516f493ec9 100644 --- a/ext/intl/msgformat/msgformat_parse.c +++ b/ext/intl/msgformat/msgformat_parse.c @@ -96,7 +96,7 @@ PHP_FUNCTION( msgfmt_parse_message ) const char *slocale = NULL; size_t slocale_len = 0; char *source = NULL; - int src_len = 0; + size_t src_len = 0; MessageFormatter_object mf = {0}; MessageFormatter_object *mfo = &mf; |