diff options
-rw-r--r-- | sys/boot/ficl/ficl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/ficl/ficl.h b/sys/boot/ficl/ficl.h index 15bf58a..0bf1775 100644 --- a/sys/boot/ficl/ficl.h +++ b/sys/boot/ficl/ficl.h @@ -229,7 +229,7 @@ struct ficl_dict; ** complement of false... that unifies logical and bitwise operations ** nicely. */ -#define FICL_TRUE (0xffffffffL) +#define FICL_TRUE (~(0L)) #define FICL_FALSE (0) #define FICL_BOOL(x) ((x) ? FICL_TRUE : FICL_FALSE) |