]> granicus.if.org Git - php/commitdiff
Switch to a signed int for now. Will look at moving to a long throughout
authorRasmus Lerdorf <rasmus@php.net>
Sat, 13 May 2006 21:50:28 +0000 (21:50 +0000)
committerRasmus Lerdorf <rasmus@php.net>
Sat, 13 May 2006 21:50:28 +0000 (21:50 +0000)
the code here.

sapi/apache/mod_php5.c

index 04f9da4d8616c76018ed9b52e9f63404cdaf4f0c..dac762fabf160abd370d9d4c9cbc7554488fd68d 100644 (file)
@@ -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);