mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
Nuke int32_t (everywhere except streams layer) and signed/unsigned warnings
This commit is contained in:
parent
8f567a5abb
commit
c366cc6d1a
41 changed files with 252 additions and 235 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue