From: Rasmus Lerdorf Date: Sat, 13 May 2006 21:48:14 +0000 (+0000) Subject: We might want to consider moving this to a long throughout the sapi code, X-Git-Tag: BEFORE_NEW_OUTPUT_API~210 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b985490f631933fde89f781eed15b83e28a78cb;p=php We might want to consider moving this to a long throughout the sapi code, but for now switch to a signed int. --- 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);