From: Sascha Schumann Date: Thu, 26 Oct 2000 18:10:57 +0000 (+0000) Subject: The type has changed to size_t. X-Git-Tag: php-4.0.4RC3~523 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2517250b353fbdfc8c84a24afb671dfeb9820580;p=php The type has changed to size_t. --- diff --git a/ext/standard/output.c b/ext/standard/output.c index 451c39941b..2b14bd7f21 100644 --- a/ext/standard/output.c +++ b/ext/standard/output.c @@ -330,7 +330,7 @@ static int php_b_body_write(const char *str, uint str_length) static int php_ub_body_write_no_header(const char *str, uint str_length) { char *newstr = NULL; - uint new_length=0; + size_t new_length=0; int result; OLS_FETCH(); BLS_FETCH(); diff --git a/main/output.c b/main/output.c index 451c39941b..2b14bd7f21 100644 --- a/main/output.c +++ b/main/output.c @@ -330,7 +330,7 @@ static int php_b_body_write(const char *str, uint str_length) static int php_ub_body_write_no_header(const char *str, uint str_length) { char *newstr = NULL; - uint new_length=0; + size_t new_length=0; int result; OLS_FETCH(); BLS_FETCH();