From 04720d3b3b3b2e5a0419948d7d0d0ce4fa3d8866 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Fri, 11 Aug 2000 23:24:54 +0000 Subject: [PATCH] - Fixed warning under VC6 --- ext/standard/image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1