diff options
author | Brandon Bergren <bdragon@FreeBSD.org> | 2020-09-22 23:27:09 +0000 |
---|---|---|
committer | Brandon Bergren <bdragon@FreeBSD.org> | 2020-09-22 23:27:09 +0000 |
commit | 0ebbda971890c149c5028066fc5ed7ea72228d87 (patch) | |
tree | 45bcd51c0b0d756110163f48fe59d0dae1aa1834 /stand/ficl/ficl.h | |
parent | 6b1d211602bd6d01d37be3091cbc8728d4ae3e8a (diff) | |
download | src-test2-0ebbda971890c149c5028066fc5ed7ea72228d87.tar.gz src-test2-0ebbda971890c149c5028066fc5ed7ea72228d87.zip |
Notes
Diffstat (limited to 'stand/ficl/ficl.h')
-rw-r--r-- | stand/ficl/ficl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/ficl/ficl.h b/stand/ficl/ficl.h index 239eb382cde3..97cf00b0dff3 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) |