summaryrefslogtreecommitdiff
path: root/stand/ficl/ficl.h
diff options
context:
space:
mode:
Diffstat (limited to 'stand/ficl/ficl.h')
-rw-r--r--stand/ficl/ficl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/ficl/ficl.h b/stand/ficl/ficl.h
index 239eb382cde3a..97cf00b0dff39 100644
--- a/stand/ficl/ficl.h
+++ b/stand/ficl/ficl.h
@@ -249,7 +249,7 @@ typedef struct ficl_system_info FICL_SYSTEM_INFO;
** complement of false... that unifies logical and bitwise operations
** nicely.
*/
-#define FICL_TRUE ((FICL_UNS)~(0LL))
+#define FICL_TRUE (~(FICL_UNS)0)
#define FICL_FALSE (0)
#define FICL_BOOL(x) ((x) ? FICL_TRUE : FICL_FALSE)