master renames phase 3

This commit is contained in:
Anatol Belski 2014-08-25 20:22:49 +02:00
parent 6f9f0bf205
commit 4d997f63d9
131 changed files with 635 additions and 643 deletions

View file

@ -663,7 +663,7 @@ U_CFUNC void umsg_parse_helper(UMessageFormat *fmt, int *count, zval **args, UCh
case Formattable::kInt64:
aInt64 = fargs[i].getInt64();
if(aInt64 > PHP_INT_MAX || aInt64 < -PHP_INT_MAX) {
if(aInt64 > ZEND_LONG_MAX || aInt64 < -ZEND_LONG_MAX) {
ZVAL_DOUBLE(&(*args)[i], (double)aInt64);
} else {
ZVAL_LONG(&(*args)[i], (zend_long)aInt64);