From 65f502bc99cfab7ef39f449e9c7706bd5b6a52c9 Mon Sep 17 00:00:00 2001 From: Tomoaki Teshima Date: Mon, 18 Dec 2017 15:32:06 +0900 Subject: [PATCH] suppress warning on Visual Studio * remove non ASCII character from the comment --- 3rdparty/libwebp/src/enc/histogram_enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/libwebp/src/enc/histogram_enc.c b/3rdparty/libwebp/src/enc/histogram_enc.c index 056a972dda..4d13e19fb2 100644 --- a/3rdparty/libwebp/src/enc/histogram_enc.c +++ b/3rdparty/libwebp/src/enc/histogram_enc.c @@ -605,7 +605,7 @@ static void HistogramCombineEntropyBin(VP8LHistogramSet* const image_histo, } // Implement a Lehmer random number generator with a multiplicative constant of -// 48271 and a modulo constant of 2^31 − 1. +// 48271 and a modulo constant of 2^31 - 1. static uint32_t MyRand(uint32_t* const seed) { *seed = (uint32_t)(((uint64_t)(*seed) * 48271u) % 2147483647u); assert(*seed > 0);