Skip to content
Snippets Groups Projects
Commit 227a762b authored by Victor Toso's avatar Victor Toso Committed by Markus Armbruster
Browse files

qapi: fix examples: replay-break and replay-seek


Both examples outputs are using @data member for the arguments. This
is wrong. The expected member for the QMP is @arguments. Fix it.

Signed-off-by: default avatarVictor Toso <victortoso@redhat.com>
Message-Id: <20220331190633.121077-3-victortoso@redhat.com>
Reviewed-by: default avatarMarkus Armbruster <armbru@redhat.com>
Signed-off-by: default avatarMarkus Armbruster <armbru@redhat.com>
parent 9a9d101c
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@
#
# Example:
#
# -> { "execute": "replay-break", "data": { "icount": 220414 } }
# -> { "execute": "replay-break", "arguments": { "icount": 220414 } }
#
##
{ 'command': 'replay-break', 'data': { 'icount': 'int' } }
......@@ -117,6 +117,6 @@
#
# Example:
#
# -> { "execute": "replay-seek", "data": { "icount": 220414 } }
# -> { "execute": "replay-seek", "arguments": { "icount": 220414 } }
##
{ 'command': 'replay-seek', 'data': { 'icount': 'int' } }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment