From e52eeb468d3dbd23c7c9f9746d3528f10a226817 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Tue, 31 May 2016 12:33:31 -0600 Subject: [PATCH] host-utils: Prefer 'false' for bool type Mixing '0' and 'bool' looks stupid. Signed-off-by: Eric Blake Signed-off-by: Michael Tokarev --- 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 1cdae0d0ed..3de7d4ec55 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.11.4.GIT