summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/compiler.h
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2014-09-04 09:20:08 -0600
committerBrian Paul <[email protected]>2014-09-04 12:17:40 -0600
commit44df6df05b4a0f08699ac1e192110f61584c3e88 (patch)
treec3e5eba4cb85fcefddcc0e9048a214d4921f6508 /src/mesa/main/compiler.h
parent3dbf55c1be5a8867616e475d943c776d8245d0cc (diff)
mesa: s/INLINE/inline/
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/compiler.h')
-rw-r--r--src/mesa/main/compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h
index 35160223e5b..813bf1905f5 100644
--- a/src/mesa/main/compiler.h
+++ b/src/mesa/main/compiler.h
@@ -151,7 +151,7 @@ extern "C" {
#include <CoreFoundation/CFByteOrder.h>
#define CPU_TO_LE32( x ) CFSwapInt32HostToLittle( x )
#elif (defined(_AIX) || defined(__blrts))
-static INLINE GLuint CPU_TO_LE32(GLuint x)
+static inline GLuint CPU_TO_LE32(GLuint x)
{
return (((x & 0x000000ff) << 24) |
((x & 0x0000ff00) << 8) |