diff options
author | Brian Paul <[email protected]> | 2008-06-21 10:27:36 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-21 10:27:36 -0600 |
commit | 7899270b9f10b5671e7ea644a66832fe86b5a1a1 (patch) | |
tree | 15c4f890ea0449ca7cfb4f9615720285f45ecfe6 /src/mesa/drivers/dri/unichrome/via_context.c | |
parent | 2e922b0e35eda9e0dab9c085bdf83d2a1094dcbb (diff) |
replace __inline and __inline__ with INLINE macro
Diffstat (limited to 'src/mesa/drivers/dri/unichrome/via_context.c')
-rw-r--r-- | src/mesa/drivers/dri/unichrome/via_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/unichrome/via_context.c b/src/mesa/drivers/dri/unichrome/via_context.c index d9b4f2d112a..ed7001d48df 100644 --- a/src/mesa/drivers/dri/unichrome/via_context.c +++ b/src/mesa/drivers/dri/unichrome/via_context.c @@ -123,7 +123,7 @@ static const GLubyte *viaGetString(GLcontext *ctx, GLenum name) * * \returns A pixel width that meets the alignment requirements. */ -static __inline__ unsigned +static INLINE unsigned buffer_align( unsigned width ) { return (width + 0x0f) & ~0x0f; |