diff options
| author | Sascha Schumann <sas@php.net> | 2000-10-26 18:10:57 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-10-26 18:10:57 +0000 |
| commit | 2517250b353fbdfc8c84a24afb671dfeb9820580 (patch) | |
| tree | 6d3e3810a2dd81f210c161c3ec0a92644eb807e1 | |
| parent | 4f757a3af03dcb5d9bf98d20e69e4bd3242f83cf (diff) | |
| download | php-git-2517250b353fbdfc8c84a24afb671dfeb9820580.tar.gz | |
The type has changed to size_t.
| -rw-r--r-- | ext/standard/output.c | 2 | ||||
| -rw-r--r-- | main/output.c | 2 |
2 files changed, 2 insertions, 2 deletions
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(); |
