]> git.proxmox.com Git - mirror_qemu.git/commit
authz: fix usage of bool in listfile.c
authorJafar Abdi <cafer.abdi@gmail.com>
Sat, 23 Mar 2019 14:26:34 +0000 (17:26 +0300)
committerDaniel P. Berrangé <berrange@redhat.com>
Fri, 7 Feb 2020 12:22:19 +0000 (12:22 +0000)
commit834e8bf17c067bbc00e4034b10cec98eef363431
tree3726c054a84982f4b243cf052f4796931df38795
parentc64e1e75381d0cb53f9fc8f93245a933b12c68a6
authz: fix usage of bool in listfile.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>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
authz/listfile.c