diff options
author | Victor Toso | 2022-09-01 10:58:36 +0200 |
---|---|---|
committer | Markus Armbruster | 2022-09-07 15:10:13 +0200 |
commit | 0cd5a5e9c9f3255d76e52b6f8a3790ba4044ce2e (patch) | |
tree | 0ac4eb51a56f4ca42f508d6e7aa30fd8323e5ac2 /qapi | |
parent | qapi: fix example of NIC_RX_FILTER_CHANGED event (diff) | |
download | qemu-0cd5a5e9c9f3255d76e52b6f8a3790ba4044ce2e.tar.gz qemu-0cd5a5e9c9f3255d76e52b6f8a3790ba4044ce2e.tar.xz qemu-0cd5a5e9c9f3255d76e52b6f8a3790ba4044ce2e.zip |
qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event
Example output is missing a ',' delimiter and it has an extra ending
curly bracket. 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-7-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/qdev.json | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qapi/qdev.json b/qapi/qdev.json index 26cd10106b..2708fb4e99 100644 --- a/qapi/qdev.json +++ b/qapi/qdev.json @@ -150,10 +150,9 @@ # # Example: # -# <- { "event": "DEVICE_UNPLUG_GUEST_ERROR" +# <- { "event": "DEVICE_UNPLUG_GUEST_ERROR", # "data": { "device": "core1", # "path": "/machine/peripheral/core1" }, -# }, # "timestamp": { "seconds": 1615570772, "microseconds": 202844 } } # ## |