diff options
| author | Daniel C. Sobral <dcs@FreeBSD.org> | 2000-01-28 03:59:12 +0000 |
|---|---|---|
| committer | Daniel C. Sobral <dcs@FreeBSD.org> | 2000-01-28 03:59:12 +0000 |
| commit | bc9ca81f3d1f68685314dfb259a5fb1b5f807105 (patch) | |
| tree | d2848de4401b0030a1c12228cf53b05fb7dfd54c | |
| parent | c2881538fa4f15c1c574345f9cb183cd05170f11 (diff) | |
Notes
| -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 15bf58ab929b..0bf177547298 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) |
