mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
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>
This commit is contained in:
parent
0a3346f5de
commit
fc48ffc39e
16 changed files with 39 additions and 38 deletions
|
@ -23,11 +23,11 @@ static const QType qbool_type = {
|
|||
};
|
||||
|
||||
/**
|
||||
* qbool_from_int(): Create a new QBool from an int
|
||||
* qbool_from_bool(): Create a new QBool from a bool
|
||||
*
|
||||
* Return strong reference.
|
||||
*/
|
||||
QBool *qbool_from_int(int value)
|
||||
QBool *qbool_from_bool(bool value)
|
||||
{
|
||||
QBool *qb;
|
||||
|
||||
|
@ -39,9 +39,9 @@ QBool *qbool_from_int(int value)
|
|||
}
|
||||
|
||||
/**
|
||||
* qbool_get_int(): Get the stored int
|
||||
* qbool_get_bool(): Get the stored bool
|
||||
*/
|
||||
int qbool_get_int(const QBool *qb)
|
||||
bool qbool_get_bool(const QBool *qb)
|
||||
{
|
||||
return qb->value;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue