From 9982044a8de79d927a2921126c1684e04f18c170 Mon Sep 17 00:00:00 2001 From: michal Date: Thu, 16 Aug 2007 12:12:14 +0100 Subject: [PATCH] Use 'f' for float suffix. --- src/mesa/pipe/p_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 src/mesa/pipe/p_util.h diff --git a/src/mesa/pipe/p_util.h b/src/mesa/pipe/p_util.h old mode 100644 new mode 100755 index 50d57a2ed0b..072dad0573a --- 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) -- 2.11.0