mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
qapi: fix example of query-hotpluggable-cpus command
The example return type has the wrong member name. Fix it. Problem was noticed when using the example as a test case for Go bindings. Signed-off-by: Victor Toso <victortoso@redhat.com> Message-Id: <20220901085840.22520-10-victortoso@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
b652293832
commit
b4c32cbf06
1 changed files with 2 additions and 2 deletions
|
@ -958,9 +958,9 @@
|
|||
#
|
||||
# -> { "execute": "query-hotpluggable-cpus" }
|
||||
# <- {"return": [
|
||||
# { "props": { "core": 8 }, "type": "POWER8-spapr-cpu-core",
|
||||
# { "props": { "core-id": 8 }, "type": "POWER8-spapr-cpu-core",
|
||||
# "vcpus-count": 1 },
|
||||
# { "props": { "core": 0 }, "type": "POWER8-spapr-cpu-core",
|
||||
# { "props": { "core-id": 0 }, "type": "POWER8-spapr-cpu-core",
|
||||
# "vcpus-count": 1, "qom-path": "/machine/unattached/device[0]"}
|
||||
# ]}'
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue