diff options
author | Eric Blake <eblake@redhat.com> | 2013-04-10 13:12:44 -0600 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2013-04-12 09:41:54 -0400 |
commit | c85a128480a3d05d2002728c449a32e32663e7de (patch) | |
tree | 8d0dc5d6a9d1024d4845754101152735e454fea1 /qapi-schema.json | |
parent | 315f9e1a8f596a37853bbed4647954029f9350db (diff) |
qapi: use valid JSON in schema
* qapi-schema.json: JSON doesn't allow trailing commas.
Signed-off-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index a184ce6123..751d3c2247 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -1600,7 +1600,7 @@ ## { 'union': 'BlockdevAction', 'data': { - 'blockdev-snapshot-sync': 'BlockdevSnapshot', + 'blockdev-snapshot-sync': 'BlockdevSnapshot' } } ## |