From: Timo Sirainen Date: Sun, 5 Jun 2016 13:54:38 +0000 (+0300) Subject: lib: define FALSE to be (!1) X-Git-Tag: 2.3.0.rc1~3528 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5286dc8a017c8adbcd243b61dd5051e8012d40b;p=thirdparty%2Fdovecot%2Fcore.git lib: define FALSE to be (!1) This allows the patched clang to treat FALSE as a boolean expression. --- diff --git a/src/lib/macros.h b/src/lib/macros.h index 247f4baf83..8445207374 100644 --- a/src/lib/macros.h +++ b/src/lib/macros.h @@ -8,7 +8,7 @@ #endif #ifndef FALSE -# define FALSE (0) +# define FALSE (!1) #endif #ifndef TRUE