Re: [Qemu-devel] [PATCH] host-utils: Prefer 'false' for bool type

2016-06-01 Thread Michael Tokarev
31.05.2016 21:33, Eric Blake wrote:
> Mixing '0' and 'bool' looks stupid.

Applied to -trivial, thanks!

/mjt



[Qemu-devel] [PATCH] host-utils: Prefer 'false' for bool type

2016-05-31 Thread Eric Blake
Mixing '0' and 'bool' looks stupid.

Signed-off-by: Eric Blake 
---
 include/qemu/host-utils.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/qemu/host-utils.h b/include/qemu/host-utils.h
index 1cdae0d..3de7d4e 100644
--- a/include/qemu/host-utils.h
+++ b/include/qemu/host-utils.h
@@ -486,7 +486,7 @@ static inline uint64_t revbit64(uint64_t x)
 static inline bool is_power_of_2(uint64_t value)
 {
 if (!value) {
-return 0;
+return false;
 }

 return !(value & (value - 1));
-- 
2.5.5