summaryrefslogtreecommitdiff
path: root/src/mesa/glapi/glX_proto_send.py
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2006-03-06 18:31:50 +0000
committerIan Romanick <idr@us.ibm.com>2006-03-06 18:31:50 +0000
commit3bca4f679a411246306e7e141c562253cb5f4c2d (patch)
tree3861019f9e87f4054e976832db778a1fa0728e41 /src/mesa/glapi/glX_proto_send.py
parent9d881ea718e3d9139ed9de7922d758978f650381 (diff)
Later versions of Python handle formats like '% 5u' differently. For
whatever reason, a space is always inserted. That is not the desired behavior.
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 53a9795918..3fa665dbce 100644
--- a/src/mesa/glapi/glX_proto_send.py
+++ b/src/mesa/glapi/glX_proto_send.py
@@ -879,7 +879,7 @@ __GLapi * __glXNewIndirectAPI( void )
if first:
print ''
if show_num:
- print ' /* % 3u. %s */' % (cat_num, cat_name)
+ print ' /* %3u. %s */' % (cat_num, cat_name)
else:
print ' /* %s */' % (cat_name)
print ''