Message ID | 20230905194846.169530-3-victortoso@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Validate and test qapi examples | expand |
On Tue, Sep 05, 2023 at 09:48:41PM +0200, Victor Toso wrote: > Example output lacks double quotes. Fix it. > > Fixes: 4cda177c60 "qmp: add 'get-win32-socket'" > Signed-off-by: Victor Toso <victortoso@redhat.com> > --- > qapi/misc.json | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> With regards, Daniel
diff --git a/qapi/misc.json b/qapi/misc.json index cda2effa81..be302cadeb 100644 --- a/qapi/misc.json +++ b/qapi/misc.json @@ -290,7 +290,7 @@ # # Example: # -# -> { "execute": "get-win32-socket", "arguments": { "info": "abcd123..", fdname": "skclient" } } +# -> { "execute": "get-win32-socket", "arguments": { "info": "abcd123..", "fdname": "skclient" } } # <- { "return": {} } ## { 'command': 'get-win32-socket', 'data': {'info': 'str', 'fdname': 'str'}, 'if': 'CONFIG_WIN32' }
Example output lacks double quotes. Fix it. Fixes: 4cda177c60 "qmp: add 'get-win32-socket'" Signed-off-by: Victor Toso <victortoso@redhat.com> --- qapi/misc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)