fixed compiler overload warning on tinderbox.

This commit is contained in:
michaelp 1998-05-13 18:54:18 +00:00
Родитель a10e166307
Коммит df8d635db9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -225,5 +225,5 @@ void nsDeviceContextWin :: SetGammaTable(PRUint8 * aTable, float aCurrentGamma,
float fgval = (1.0f / aCurrentGamma) * (1.0f / aNewGamma);
for (PRInt32 cnt = 0; cnt < 256; cnt++)
aTable[cnt] = (PRUint8)(pow(cnt * (1. / 256.), fgval) * 255.99999999);
aTable[cnt] = (PRUint8)(::pow(cnt * (1. / 256.), fgval) * 255.99999999);
}