diff options
author | Xinchen Hui <laruence@php.net> | 2011-08-19 07:40:51 +0000 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2011-08-19 07:40:51 +0000 |
commit | 9cdb9a80a77933cbd205b4447a118ff40d42e74d (patch) | |
tree | 57c4f19c1d3359f0107e79f890dc90b46435aa5c /sapi/cli/php_http_parser.h | |
parent | 0fd3f882cdf96ac58b08648f9b9d577829e3799c (diff) | |
download | php-git-9cdb9a80a77933cbd205b4447a118ff40d42e74d.tar.gz |
Fixed #55457 for 5.4 branch
Use ssize_t instead of long (as pierre suggestion)
Diffstat (limited to 'sapi/cli/php_http_parser.h')
-rw-r--r-- | sapi/cli/php_http_parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_http_parser.h b/sapi/cli/php_http_parser.h index 8be44739a2..8254a4367e 100644 --- a/sapi/cli/php_http_parser.h +++ b/sapi/cli/php_http_parser.h @@ -112,7 +112,7 @@ struct php_http_parser { unsigned char index; uint32_t nread; - size_t content_length; + ssize_t content_length; /** READ-ONLY **/ unsigned short http_major; |