From: Derick Rethans Date: Fri, 11 Aug 2000 23:24:54 +0000 (+0000) Subject: - Fixed warning under VC6 X-Git-Tag: php-4.0.2RC1~137 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=04720d3b3b3b2e5a0419948d7d0d0ce4fa3d8866;p=php - Fixed warning under VC6 --- diff --git a/ext/standard/image.c b/ext/standard/image.c index 6982132df7..49ad1d90dd 100644 --- a/ext/standard/image.c +++ b/ext/standard/image.c @@ -94,7 +94,7 @@ static unsigned long php_read4(FILE *fp) } -static unsigned long int php_swf_get_bits (unsigned char* buffer, int pos, int count) +static unsigned long int php_swf_get_bits (unsigned char* buffer, unsigned int pos, unsigned int count) { unsigned int loop; unsigned long int result = 0;