diff options
author | Markus Armbruster <armbru@redhat.com> | 2014-05-07 09:53:49 +0200 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2014-05-15 14:00:46 -0400 |
commit | 192cca60aec59eda9a36501f03fc9dabf4d66a16 (patch) | |
tree | 1f71f301e6f07731e540173a399a25851a3200f1 | |
parent | 4fa953f20d418256504d24ea16f1b39791d12e5b (diff) | |
download | qemu-192cca60aec59eda9a36501f03fc9dabf4d66a16.zip qemu-192cca60aec59eda9a36501f03fc9dabf4d66a16.tar.gz qemu-192cca60aec59eda9a36501f03fc9dabf4d66a16.tar.bz2 |
qapi-visit.py: Clean up a sloppy use of field prefix
generate_visit_struct_fields() generates the base type's struct member
name both with and without the field prefix. Harmless, because the
field prefix is always empty there: only unboxed complex members have
a prefix, and those can't have a base type.
Clean it up anyway.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
-rw-r--r-- | scripts/qapi-visit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qapi-visit.py b/scripts/qapi-visit.py index 57be9bf..1e368be 100644 --- a/scripts/qapi-visit.py +++ b/scripts/qapi-visit.py @@ -60,7 +60,7 @@ static void visit_type_%(full_name)s_fields(Visitor *m, %(name)s ** obj, Error * if base: ret += mcgen(''' -visit_start_implicit_struct(m, (void**) &(*obj)->%(c_name)s, sizeof(%(type)s), &err); +visit_start_implicit_struct(m, (void**) &(*obj)->%(c_prefix)s%(c_name)s, sizeof(%(type)s), &err); if (!err) { visit_type_%(type)s_fields(m, &(*obj)->%(c_prefix)s%(c_name)s, &err); error_propagate(errp, err); |