]> git.proxmox.com Git - mirror_qemu.git/commit
tests/libqos: fix usage of bool in pci-pc.c
authorJafar Abdi <cafer.abdi@gmail.com>
Sat, 23 Mar 2019 14:26:35 +0000 (17:26 +0300)
committerThomas Huth <thuth@redhat.com>
Mon, 8 Apr 2019 10:38:07 +0000 (12:38 +0200)
commit08f7ad1b00a00eeb6c8f499b138f41d3b59f0ece
tree6d4b38e8a05042f89f86cf6dfa3517d4b24790d2
parentf55a585d1037e5de6088f25e75443c2776786e29
tests/libqos: fix usage of bool in pci-pc.c

Clean up wrong usage of FALSE and TRUE in places that use "bool" from stdbool.h.

FALSE and TRUE (with capital letters) are the constants defined by glib for
being used with the "gboolean" type of glib. But some parts of the code also use
TRUE and FALSE for variables that are declared as "bool" (the type from <stdbool.h>).

Signed-off-by: Jafar Abdi <cafer.abdi@gmail.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <1553351197-14581-3-git-send-email-cafer.abdi@gmail.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/libqos/pci-pc.c