summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mapi/glapi/gen/glX_proto_send.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mapi/glapi/gen/glX_proto_send.py b/src/mapi/glapi/gen/glX_proto_send.py
index 8ea799a1d7..8fe0876bfc 100644
--- a/src/mapi/glapi/gen/glX_proto_send.py
+++ b/src/mapi/glapi/gen/glX_proto_send.py
@@ -38,18 +38,18 @@ import glX_proto_common
import license
-def convertStringForXCB(str):
+def convertStringForXCB(string_):
tmp = ""
special = ["ARB"]
i = 0
- while i < len(str):
- if str[i:i+3] in special:
- tmp = '%s_%s' % (tmp, str[i:i+3].lower())
+ while i < len(string_):
+ if string_[i:i+3] in special:
+ tmp = '%s_%s' % (tmp, string_[i:i+3].lower())
i = i + 2
- elif str[i].isupper():
- tmp = '%s_%s' % (tmp, str[i].lower())
+ elif string_[i].isupper():
+ tmp = '%s_%s' % (tmp, string_[i].lower())
else:
- tmp = '%s%s' % (tmp, str[i])
+ tmp = '%s%s' % (tmp, string_[i])
i += 1
return tmp