From 2187adc619cc51f17582626349a161a81243303a Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 4 Dec 2000 20:31:45 +0000 Subject: [PATCH] Flag day warning! Change TRUE and FALSE defines to normal C style TRUE=1, FALSE=0. -Erik --- busybox.h | 4 ++-- include/busybox.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/busybox.h b/busybox.h index bd8fca5..4a4f44a 100644 --- a/busybox.h +++ b/busybox.h @@ -45,8 +45,8 @@ /* Some useful definitions */ -#define FALSE ((int) 1) -#define TRUE ((int) 0) +#define FALSE ((int) 0) +#define TRUE ((int) 1) /* for mtab.c */ #define MTAB_GETMOUNTPT '1' diff --git a/include/busybox.h b/include/busybox.h index bd8fca5..4a4f44a 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -45,8 +45,8 @@ /* Some useful definitions */ -#define FALSE ((int) 1) -#define TRUE ((int) 0) +#define FALSE ((int) 0) +#define TRUE ((int) 1) /* for mtab.c */ #define MTAB_GETMOUNTPT '1' -- 2.7.4