From: Victor Toso Date: Thu, 1 Sep 2022 08:58:32 +0000 (+0200) Subject: qapi: fix example of query-vnc command X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5be07b3e54b4eb9781fd0fb729e0ac7406499605;p=qemu.git 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 Message-Id: <20220901085840.22520-3-victortoso@redhat.com> Signed-off-by: Markus Armbruster --- diff --git a/qapi/ui.json b/qapi/ui.json index cf58ab4283..286c5731d1 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 # } # ] # }