diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2006-05-13 21:48:14 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2006-05-13 21:48:14 +0000 |
commit | 9b985490f631933fde89f781eed15b83e28a78cb (patch) | |
tree | cc858cf0e48ddee34fc998c515d732daae7a7878 | |
parent | 29c0f5bede3f03a0909848c8cf25e1c5525399e0 (diff) | |
download | php-git-9b985490f631933fde89f781eed15b83e28a78cb.tar.gz |
We might want to consider moving this to a long throughout the sapi code,
but for now switch to a signed int.
-rw-r--r-- | sapi/apache/mod_php5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/mod_php5.c b/sapi/apache/mod_php5.c index 925a0b6cf0..d2f2cde2ef 100644 --- a/sapi/apache/mod_php5.c +++ b/sapi/apache/mod_php5.c @@ -123,7 +123,7 @@ static void sapi_apache_flush(void *server_context) */ static int sapi_apache_read_post(char *buffer, uint count_bytes TSRMLS_DC) { - uint total_read_bytes=0, read_bytes; + int total_read_bytes=0, read_bytes; request_rec *r = (request_rec *) SG(server_context); void (*handler)(int); |