From c5b8fbfbc696ad0c950a83ad78d0242195207971 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Mon, 26 Dec 2016 22:02:34 +0800 Subject: [PATCH] glib_compat: FALSE = 0 --- qemu/include/glib_compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/include/glib_compat.h b/qemu/include/glib_compat.h index 6af3dd83..b8bb9207 100644 --- a/qemu/include/glib_compat.h +++ b/qemu/include/glib_compat.h @@ -30,7 +30,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #endif #ifndef FALSE -#define FALSE 1 +#define FALSE 0 #endif #define g_assert(expr) assert(expr)