qapi: don't convert enum strings to lowercase

Next commit will introduce enum strings in camel case.

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
Luiz Capitulino 2012-07-27 09:38:05 -03:00
parent f01f594b63
commit ac4ff701d8
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ const char *%(name)s_lookup[] = {
ret += mcgen('''
"%(value)s",
''',
value=value.lower())
value=value)
ret += mcgen('''
NULL,