mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
util: Silence compiler warnings on Windows.
This commit is contained in:
parent
f3dfd5969d
commit
e7ff7f78be
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ init_pow2_table(void)
|
|||
{
|
||||
int i;
|
||||
for (i = 0; i < POW2_TABLE_SIZE; i++) {
|
||||
pow2_table[i] = pow(2.0, i / POW2_TABLE_SCALE);
|
||||
pow2_table[i] = (float) pow(2.0, i / POW2_TABLE_SCALE);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue