diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2012-07-27 09:38:05 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-08-13 13:21:06 -0300 |
commit | ac4ff701d88c4c742b4a53b83eed7ce356535ef8 (patch) | |
tree | f68a4dcab6b3af03d9945bce33f8b6e4a5fb0520 /scripts | |
parent | f01f594b63becfc17cb23b4c15193230d01592e4 (diff) |
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>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/qapi-types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qapi-types.py b/scripts/qapi-types.py index 9b7da96ef2..cf601ae2d2 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, |