diff options
author | Michal Krol <michal@tungstengraphics.com> | 2008-08-23 12:31:16 +0200 |
---|---|---|
committer | Michal Krol <michal@tungstengraphics.com> | 2008-08-23 12:31:16 +0200 |
commit | e7ff7f78be6c14b6c48e451d6d1f597af379f8f8 (patch) | |
tree | 4ab948473e284e415d0c6637263fd86c0eff1ead /src/gallium/auxiliary/util | |
parent | f3dfd5969d447515635c077b700a2d4957208167 (diff) |
util: Silence compiler warnings on Windows.
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r-- | src/gallium/auxiliary/util/u_math.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_math.c b/src/gallium/auxiliary/util/u_math.c index 8bf6551b6e..0729114d6a 100644 --- a/src/gallium/auxiliary/util/u_math.c +++ b/src/gallium/auxiliary/util/u_math.c @@ -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); } } |