From: Victor Toso Date: Thu, 1 Sep 2022 08:58:37 +0000 (+0200) Subject: qapi: fix example of MEM_UNPLUG_ERROR event X-Git-Tag: v7.2.0-rc0~91^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e8796ac4b6f8a9f8d1d2c3c6a774d815d10d88c5;p=thirdparty%2Fqemu.git qapi: fix example of MEM_UNPLUG_ERROR event Example output was missing ',' delimiter. 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-8-victortoso@redhat.com> Signed-off-by: Markus Armbruster --- diff --git a/qapi/machine.json b/qapi/machine.json index 5f1f50d3eda..4782eea2c39 100644 --- a/qapi/machine.json +++ b/qapi/machine.json @@ -1416,7 +1416,7 @@ # # Example: # -# <- { "event": "MEM_UNPLUG_ERROR" +# <- { "event": "MEM_UNPLUG_ERROR", # "data": { "device": "dimm1", # "msg": "acpi: device unplug for unsupported device" # },