diff options
| author | Eric Blake <eblake@redhat.com> | 2015-05-04 09:05:01 -0600 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2015-05-05 18:39:00 +0200 |
| commit | cb17f79eef0d161e81ac457e4c1f124405be2a18 (patch) | |
| tree | 26a04f98d0972a8cd70c3b27e488b6d3f83ec25e /scripts/qapi.py | |
| parent | b52c4b9cf0bbafdf8cede4ea1f62770d86815718 (diff) | |
| download | focaccia-qemu-cb17f79eef0d161e81ac457e4c1f124405be2a18.tar.gz focaccia-qemu-cb17f79eef0d161e81ac457e4c1f124405be2a18.zip | |
qapi: Fix generation of 'size' builtin type
We were missing the 'size' builtin type (which means that QAPI using [ 'size' ] would fail to compile). Signed-off-by: Eric Blake <eblake@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'scripts/qapi.py')
| -rw-r--r-- | scripts/qapi.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/qapi.py b/scripts/qapi.py index 2b5775d2af..d47034760d 100644 --- a/scripts/qapi.py +++ b/scripts/qapi.py @@ -29,6 +29,7 @@ builtin_types = { 'uint16': 'QTYPE_QINT', 'uint32': 'QTYPE_QINT', 'uint64': 'QTYPE_QINT', + 'size': 'QTYPE_QINT', } def error_path(parent): |