diff options
author | Marc-André Lureau | 2017-08-25 12:59:05 +0200 |
---|---|---|
committer | Markus Armbruster | 2017-09-04 13:09:11 +0200 |
commit | d9eba57a6ad6d8fe8cf11bdd8345bbda66deb6d9 (patch) | |
tree | d317b4e9abf09de808cd4fdd1bfb47c4dbc30dc9 /include | |
parent | qlit: rename compare_litqobj_to_qobj() to qlit_equal_qobject() (diff) | |
download | qemu-d9eba57a6ad6d8fe8cf11bdd8345bbda66deb6d9.tar.gz qemu-d9eba57a6ad6d8fe8cf11bdd8345bbda66deb6d9.tar.xz qemu-d9eba57a6ad6d8fe8cf11bdd8345bbda66deb6d9.zip |
qlit: make qlit_equal_qobject return a bool
Make it more obvious about the expected return values.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20170825105913.4060-7-marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qapi/qmp/qlit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qapi/qmp/qlit.h b/include/qapi/qmp/qlit.h index 5a180477c8..35aabbdc9f 100644 --- a/include/qapi/qmp/qlit.h +++ b/include/qapi/qmp/qlit.h @@ -44,6 +44,6 @@ struct QLitDictEntry { #define QLIT_QLIST(val) \ { .type = QTYPE_QLIST, .value.qlist = (val) } -int qlit_equal_qobject(QLitObject *lhs, QObject *rhs); +bool qlit_equal_qobject(QLitObject *lhs, QObject *rhs); #endif /* QLIT_H */ |