summaryrefslogtreecommitdiffstats
path: root/qmp-commands.hx
diff options
context:
space:
mode:
authorAmos Kong <akong@redhat.com>2014-11-25 16:05:56 +0800
committerMichael Tokarev <mjt@tls.msk.ru>2014-12-10 11:14:44 +0300
commitb5369dd841b55aa24dd107223e0a08d8624d1b19 (patch)
treed5370918e9ce3ef0093a80a11e8ccf60a68c50c6 /qmp-commands.hx
parent7fb8da2b8861795e0013e6ee97acd0363d868a35 (diff)
downloadhqemu-b5369dd841b55aa24dd107223e0a08d8624d1b19.zip
hqemu-b5369dd841b55aa24dd107223e0a08d8624d1b19.tar.gz
qmp: fix typo in input-send-event examples
Lack of two closed bracket in json commands. Signed-off-by: Amos Kong <akong@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'qmp-commands.hx')
-rw-r--r--qmp-commands.hx4
1 files changed, 2 insertions, 2 deletions
diff --git a/qmp-commands.hx b/qmp-commands.hx
index 718dd92..47bcf87 100644
--- a/qmp-commands.hx
+++ b/qmp-commands.hx
@@ -3820,13 +3820,13 @@ Press left mouse button.
-> { "execute": "x-input-send-event",
"arguments": { "console": 0,
"events": [ { "type": "btn",
- "data" : { "down": true, "button": "Left" } } } }
+ "data" : { "down": true, "button": "Left" } } ] } }
<- { "return": {} }
-> { "execute": "x-input-send-event",
"arguments": { "console": 0,
"events": [ { "type": "btn",
- "data" : { "down": false, "button": "Left" } } } }
+ "data" : { "down": false, "button": "Left" } } ] } }
<- { "return": {} }
Example (2):
OpenPOWER on IntegriCloud