aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2018-08-29 15:40:35 +0200
committerMarkus Armbruster <armbru@redhat.com>2018-08-30 16:08:47 +0200
commit2aa788f5cb9e7fa24bed9091e7eae801f5c3ab04 (patch)
tree35cb3e9de2407a9e0729fe93474c1d4912beb024 /include
parent6cd112e26664994cb5eff207e765c9c3e55f73ea (diff)
downloadqemu-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')
-rw-r--r--include/qapi/qmp/dispatch.h2
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);