diff options
author | Ian Romanick <[email protected]> | 2006-03-06 18:31:50 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2006-03-06 18:31:50 +0000 |
commit | 3bca4f679a411246306e7e141c562253cb5f4c2d (patch) | |
tree | 3861019f9e87f4054e976832db778a1fa0728e41 /src/mesa/glapi/glX_proto_send.py | |
parent | 9d881ea718e3d9139ed9de7922d758978f650381 (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.py | 2 |
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 53a97959182..3fa665dbcec 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 '' |