suppress warning on Visual Studio

* remove non ASCII character from the comment
This commit is contained in:
Tomoaki Teshima 2017-12-18 15:32:06 +09:00
parent 6cedc82799
commit 65f502bc99

View File

@ -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);