Re: [Qemu-devel] [PATCH V2 1/4] authz: fix usage of bool in listfile.c

2019-03-24 Thread Philippe Mathieu-Daudé
Le sam. 23 mars 2019 15:27, Jafar Abdi a écrit : > 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

Re: [Qemu-devel] [PATCH V2 1/4] authz: fix usage of bool in listfile.c

2019-03-24 Thread Thomas Huth
On 23/03/2019 15.26, Jafar Abdi wrote: > 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

[Qemu-devel] [PATCH V2 1/4] authz: fix usage of bool in listfile.c

2019-03-23 Thread Jafar Abdi
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"