From 2833ad4f4c3fed856cb12be47b2c22801a7504ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Wed, 7 Mar 2018 17:17:36 -0500 Subject: [PATCH] qlit: make qlit_equal_qobject() take const arguments Backports commit e2346a19521c6cce417250c75adb0b3a7cd5535a from qemu --- qemu/include/qapi/qmp/qlit.h | 2 +- qemu/qobject/qlit.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qemu/include/qapi/qmp/qlit.h b/qemu/include/qapi/qmp/qlit.h index 35aabbdc..fc1a2d84 100644 --- a/qemu/include/qapi/qmp/qlit.h +++ b/qemu/include/qapi/qmp/qlit.h @@ -44,6 +44,6 @@ struct QLitDictEntry { #define QLIT_QLIST(val) \ { .type = QTYPE_QLIST, .value.qlist = (val) } -bool qlit_equal_qobject(QLitObject *lhs, QObject *rhs); +bool qlit_equal_qobject(const QLitObject *lhs, const QObject *rhs); #endif /* QLIT_H */ diff --git a/qemu/qobject/qlit.c b/qemu/qobject/qlit.c index 13a5b6c2..6820bff5 100644 --- a/qemu/qobject/qlit.c +++ b/qemu/qobject/qlit.c @@ -45,7 +45,7 @@ static void compare_helper(QObject *obj, void *opaque) qlit_equal_qobject(&helper->objs[helper->index++], obj); } -bool qlit_equal_qobject(QLitObject *lhs, QObject *rhs) +bool qlit_equal_qobject(const QLitObject *lhs, const QObject *rhs) { int64_t val;