summaryrefslogtreecommitdiff
path: root/src/mesa/glapi/glX_proto_send.py
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2004-12-01 09:06:34 +0000
committerIan Romanick <idr@us.ibm.com>2004-12-01 09:06:34 +0000
commitb53df18624a1b3870c1dcfe3981c07c089efe262 (patch)
treeed03227f625daae059a7186d1c24423124332bbb /src/mesa/glapi/glX_proto_send.py
parent548435215dc43ff4940c74f0082f48f897080ccf (diff)
Slightly tweak the format of the size prototypes.
Diffstat (limited to 'src/mesa/glapi/glX_proto_send.py')
-rw-r--r--src/mesa/glapi/glX_proto_send.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/glX_proto_send.py b/src/mesa/glapi/glX_proto_send.py
index 77d54b6ef1..452cd7f4d6 100644
--- a/src/mesa/glapi/glX_proto_send.py
+++ b/src/mesa/glapi/glX_proto_send.py
@@ -934,7 +934,7 @@ class PrintGlxSizeStubs_h(GlxProto):
def printFunction(self, f):
if self.glx_enum_functions.has_key(f.name):
ef = self.glx_enum_functions[f.name]
- print 'extern INTERNAL GLint __gl%s_size(GLenum) PURE FASTCALL;' % (f.name)
+ print 'extern INTERNAL PURE FASTCALL GLint __gl%s_size(GLenum);' % (f.name)
def show_usage():