summaryrefslogtreecommitdiff
path: root/block/qapi.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2015-04-29 15:35:04 -0600
committerLuiz Capitulino <lcapitulino@redhat.com>2015-05-11 08:59:07 -0400
commita7c31816288a8f20fc387d69d441413e7a8c9ff1 (patch)
treec66deef69b36736bc7b77fa372c1efd54ba12881 /block/qapi.c
parent4cf2d837340589155acfda993c51e66eb5800416 (diff)
downloadqemu-a7c31816288a8f20fc387d69d441413e7a8c9ff1.tar.gz
qobject: Clean up around qtype_code
QTYPE_NONE is a sentinel value. No QObject has this type code. Document it properly. Fix dump_qobject() to abort() on QTYPE_NONE, just like for any other invalid type code. Fix to_json() to abort() on all invalid type codes, not just QTYPE_MAX. Clean up Property member qtype's type: it's a qtype_code. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'block/qapi.c')
-rw-r--r--block/qapi.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/block/qapi.c b/block/qapi.c
index 063dd1bc1f..18d2b95f54 100644
--- a/block/qapi.c
+++ b/block/qapi.c
@@ -523,9 +523,6 @@ static void dump_qobject(fprintf_function func_fprintf, void *f,
QDECREF(value);
break;
}
- case QTYPE_NONE:
- break;
- case QTYPE_MAX:
default:
abort();
}