Next commit will introduce enum strings in camel case. Signed-off-by: Luiz Capitulino <lcapitul...@redhat.com> Reviewed-by: Markus Armbruster <arm...@redhat.com> --- scripts/qapi-types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py index 9b7da96..cf601ae 100644 --- a/scripts/qapi-types.py +++ b/scripts/qapi-types.py @@ -70,7 +70,7 @@ const char *%(name)s_lookup[] = { ret += mcgen(''' "%(value)s", ''', - value=value.lower()) + value=value) ret += mcgen(''' NULL, -- 1.7.11.2.249.g31c7954.dirty