From ea63d61937e9ef2ce5a4b9edeb20a408e9422b9e Mon Sep 17 00:00:00 2001 From: skal Date: Wed, 5 Jun 2013 10:14:04 +0200 Subject: [PATCH] fix a type warning on VS9 x86 "warning C4244: 'function' : conversion from 'uint64_t' to 'size_t', possible loss of data" Change-Id: Ibd9f6a24993518d658d08127d616a17d7b99e0e4 --- src/enc/alpha.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/enc/alpha.c b/src/enc/alpha.c index e73b042e..fe615970 100644 --- a/src/enc/alpha.c +++ b/src/enc/alpha.c @@ -216,7 +216,7 @@ static void InitFilterTrial(FilterTrial* const score) { } static int ApplyFilters(const uint8_t* alpha, int width, int height, - uint64_t data_size, int method, int filter, + size_t data_size, int method, int filter, int reduce_levels, int effort_level, uint8_t** const output, size_t* const output_size, WebPAuxStats* const stats) {