diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2018-08-29 15:40:35 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2018-08-30 16:08:47 +0200 |
commit | 2aa788f5cb9e7fa24bed9091e7eae801f5c3ab04 (patch) | |
tree | 35cb3e9de2407a9e0729fe93474c1d4912beb024 /include/qapi/qmp | |
parent | 6cd112e26664994cb5eff207e765c9c3e55f73ea (diff) | |
download | qemu-2aa788f5cb9e7fa24bed9091e7eae801f5c3ab04.zip qemu-2aa788f5cb9e7fa24bed9091e7eae801f5c3ab04.tar.gz qemu-2aa788f5cb9e7fa24bed9091e7eae801f5c3ab04.tar.bz2 |
qmp: constify qmp_is_oob()
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20180829134043.31706-3-marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'include/qapi/qmp')
-rw-r--r-- | include/qapi/qmp/dispatch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qapi/qmp/dispatch.h b/include/qapi/qmp/dispatch.h index 4e2e749..68a528a 100644 --- a/include/qapi/qmp/dispatch.h +++ b/include/qapi/qmp/dispatch.h @@ -50,7 +50,7 @@ bool qmp_has_success_response(const QmpCommand *cmd); QDict *qmp_error_response(Error *err); QDict *qmp_dispatch(QmpCommandList *cmds, QObject *request, bool allow_oob); -bool qmp_is_oob(QDict *dict); +bool qmp_is_oob(const QDict *dict); typedef void (*qmp_cmd_callback_fn)(QmpCommand *cmd, void *opaque); |