From: Sterling Hughes Date: Tue, 9 Apr 2002 06:13:00 +0000 (+0000) Subject: fix compile warnings X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~780 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=11acdb097dd6828df717d15a730bb6e49c153ce6;p=php fix compile warnings --- diff --git a/sapi/apache2filter/php_functions.c b/sapi/apache2filter/php_functions.c index 3a5131ecb9..159a392e6d 100644 --- a/sapi/apache2filter/php_functions.c +++ b/sapi/apache2filter/php_functions.c @@ -88,8 +88,8 @@ PHP_FUNCTION(apache_lookup_uri) ADD_STRING(the_request); ADD_STRING(status_line); ADD_STRING(method); - ADD_LONG(mtime); - ADD_LONG(clength); + ADD_LONG((long) mtime); + ADD_LONG((long) clength); ADD_STRING(boundary); ADD_STRING(range); ADD_LONG(chunked);