mirror of
https://github.com/qemu/qemu.git
synced 2025-07-31 01:18:30 +00:00
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:
parent
f01f594b63
commit
ac4ff701d8
@ -70,7 +70,7 @@ def generate_enum_lookup(name, values):
|
||||
ret += mcgen('''
|
||||
"%(value)s",
|
||||
''',
|
||||
value=value.lower())
|
||||
value=value)
|
||||
|
||||
ret += mcgen('''
|
||||
NULL,
|
||||
|
Loading…
Reference in New Issue
Block a user