Browse Source

util: Silence compiler warnings on Windows.

tags/mesa_20090313
Michal Krol 17 years ago
parent
commit
e7ff7f78be
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/gallium/auxiliary/util/u_math.c

+ 1
- 1
src/gallium/auxiliary/util/u_math.c View File

@@ -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…
Cancel
Save