diff options
author | Victor Toso <victortoso@redhat.com> | 2022-03-31 21:06:26 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2022-04-05 12:30:45 +0200 |
commit | 227a762bef7d09d013199d98de8c411c4004fa7b (patch) | |
tree | b1c909e09a083b2b4a33da7bdcd45381820650cf /qapi | |
parent | 9a9d101c5bd21fb2b4b8b06f66e3fde57e7b5dd7 (diff) |
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: Victor Toso <victortoso@redhat.com>
Message-Id: <20220331190633.121077-3-victortoso@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/replay.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qapi/replay.json b/qapi/replay.json index b4d1ba253b..351898f60d 100644 --- a/qapi/replay.json +++ b/qapi/replay.json @@ -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' } } |