diff options
author | Victor Toso <victortoso@redhat.com> | 2022-09-01 10:58:32 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2022-09-07 15:10:13 +0200 |
commit | 5be07b3e54b4eb9781fd0fb729e0ac7406499605 (patch) | |
tree | 9e9166e3f6bc1db093008992f8d27c009c4dee93 | |
parent | 5d07159d639603e31f570665946e0817da313302 (diff) | |
download | qemu-5be07b3e54b4eb9781fd0fb729e0ac7406499605.zip qemu-5be07b3e54b4eb9781fd0fb729e0ac7406499605.tar.gz qemu-5be07b3e54b4eb9781fd0fb729e0ac7406499605.tar.bz2 |
qapi: fix example of query-vnc command
Example output has an extra ',' delimiter in member "websocket" and it
lacks it in "family" member. 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-3-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
-rw-r--r-- | qapi/ui.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qapi/ui.json b/qapi/ui.json index cf58ab4..286c573 100644 --- a/qapi/ui.json +++ b/qapi/ui.json @@ -667,8 +667,8 @@ # { # "host":"127.0.0.1", # "service":"50401", -# "family":"ipv4" -# "websocket":false, +# "family":"ipv4", +# "websocket":false # } # ] # } |