diff options
author | Victor Toso <victortoso@redhat.com> | 2022-09-01 10:58:34 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2022-09-07 15:10:13 +0200 |
commit | ccc9ddbcbe5a0a8d7d2881bf6b17324016fb994b (patch) | |
tree | d56822a2bc3073ae8717bd3ad40c6a3749b3bb64 /qapi/block-core.json | |
parent | 612fb7cd5492f7f421cbcbb6d6118ca7eef62c91 (diff) | |
download | qemu-ccc9ddbcbe5a0a8d7d2881bf6b17324016fb994b.zip qemu-ccc9ddbcbe5a0a8d7d2881bf6b17324016fb994b.tar.gz qemu-ccc9ddbcbe5a0a8d7d2881bf6b17324016fb994b.tar.bz2 |
qapi: fix example of BLOCK_JOB_READY event
Example output is missing ',' delimiter. Fix it.
Problem was noticed when trying to load the example into python's json
library.
Signed-off-by: Victor Toso <victortoso@redhat.com>
Message-Id: <20220901085840.22520-5-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi/block-core.json')
-rw-r--r-- | qapi/block-core.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qapi/block-core.json b/qapi/block-core.json index 2173e77..882b266 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -5252,7 +5252,7 @@ # # <- { "event": "BLOCK_JOB_READY", # "data": { "device": "drive0", "type": "mirror", "speed": 0, -# "len": 2097152, "offset": 2097152 } +# "len": 2097152, "offset": 2097152 }, # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } } # ## |