diff options
author | Eric Blake <eblake@redhat.com> | 2015-05-15 16:24:59 -0600 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2015-06-22 17:40:00 +0200 |
commit | fc48ffc39ed1060856475e4320d5896f26c945e8 (patch) | |
tree | 4e4a5a4b9a6b9a0602fe5863e694ec472edccbf8 /util | |
parent | 0a3346f5dea0a679322df804e1e78d7c10d12a9f (diff) | |
download | qemu-fc48ffc39ed1060856475e4320d5896f26c945e8.zip |
qobject: Use 'bool' for qbool
We require a C99 compiler, so let's use 'bool' instead of 'int'
when dealing with boolean values. There are few enough clients
to fix them all in one pass.
Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Reviewed-by: Alberto Garcia <berto@igalia.com>
Acked-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/qemu-option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/qemu-option.c b/util/qemu-option.c index 840f5f7a5b..69da28c7e1 100644 --- a/util/qemu-option.c +++ b/util/qemu-option.c @@ -927,7 +927,7 @@ static void qemu_opts_from_qdict_1(const char *key, QObject *obj, void *opaque) break; case QTYPE_QBOOL: pstrcpy(buf, sizeof(buf), - qbool_get_int(qobject_to_qbool(obj)) ? "on" : "off"); + qbool_get_bool(qobject_to_qbool(obj)) ? "on" : "off"); value = buf; break; default: |