summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authormichal <michal@michal-laptop.(none)>2007-08-16 12:12:14 +0100
committermichal <michal@michal-laptop.(none)>2007-08-16 12:12:14 +0100
commit9982044a8de79d927a2921126c1684e04f18c170 (patch)
tree3dc2749082a8cd43cb018b1216f8ad3f2aee8994 /src/mesa
parentb0b871429daabfb6a8788444283021fab79e2d0f (diff)
Use 'f' for float suffix.
Diffstat (limited to 'src/mesa')
-rwxr-xr-x[-rw-r--r--]src/mesa/pipe/p_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/p_util.h b/src/mesa/pipe/p_util.h
index 50d57a2ed0..072dad0573 100644..100755
--- a/src/mesa/pipe/p_util.h
+++ b/src/mesa/pipe/p_util.h
@@ -60,7 +60,7 @@ union fi {
else if (__tmp.i >= IEEE_0996) \
UB = (ubyte) 255; \
else { \
- __tmp.f = __tmp.f * (255.0F/256.0F) + 32768.0F; \
+ __tmp.f = __tmp.f * (255.0f/256.0f) + 32768.0f; \
UB = (ubyte) __tmp.i; \
} \
} while (0)