summaryrefslogtreecommitdiff
path: root/sapi/apache/mod_php5.c
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2006-05-13 21:50:28 +0000
committerRasmus Lerdorf <rasmus@php.net>2006-05-13 21:50:28 +0000
commit6fb0bf80ea5679ee78545bfa721faf20ea9a278f (patch)
tree5b4a722ea2fe6dbed552cc3abdae9feab7c28943 /sapi/apache/mod_php5.c
parent2100a8619840ae1090f5eb7a86f3b673c79caa2d (diff)
downloadphp-git-6fb0bf80ea5679ee78545bfa721faf20ea9a278f.tar.gz
Switch to a signed int for now. Will look at moving to a long throughout
the code here.
Diffstat (limited to 'sapi/apache/mod_php5.c')
-rw-r--r--sapi/apache/mod_php5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/mod_php5.c b/sapi/apache/mod_php5.c
index 04f9da4d86..dac762fabf 100644
--- a/sapi/apache/mod_php5.c
+++ b/sapi/apache/mod_php5.c
@@ -127,7 +127,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);