summary refs log tree commit diff stats
path: root/include
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2016-05-04 18:49:18 +0200
committerAmit Shah <amit.shah@redhat.com>2016-05-23 14:16:12 +0530
commitb72fe9e690db5082fdd0476074230cf2c65508bf (patch)
tree2b332dd8bc8eb429cbbc31684e3239588522492f /include
parent17b74b98676aee5bc470b173b1e528d2fce2cf18 (diff)
downloadfocaccia-qemu-b72fe9e690db5082fdd0476074230cf2c65508bf.tar.gz
focaccia-qemu-b72fe9e690db5082fdd0476074230cf2c65508bf.zip
migration/qjson: Drop gratuitous use of QOM
All the use of QOM buys us here is the ability to destroy the thing
with object_unref(OBJECT(vmdesc)).  Not worth the notational overhead.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <1462380558-2030-3-git-send-email-armbru@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/migration/qjson.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/migration/qjson.h b/include/migration/qjson.h
index 7c54fdf0ac..2978b5f371 100644
--- a/include/migration/qjson.h
+++ b/include/migration/qjson.h
@@ -13,10 +13,10 @@
 #ifndef QEMU_QJSON_H
 #define QEMU_QJSON_H
 
-#define TYPE_QJSON "QJSON"
 typedef struct QJSON QJSON;
 
 QJSON *qjson_new(void);
+void qjson_destroy(QJSON *json);
 void json_prop_str(QJSON *json, const char *name, const char *str);
 void json_prop_int(QJSON *json, const char *name, int64_t val);
 void json_end_array(QJSON *json);