From 385fedb640d66f7a27f2dc75e282ebaf09313c75 Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Mon, 4 Feb 2002 16:42:44 +0000 Subject: [PATCH] Back out the "upgrading" of NBBY to unsigned, as it exposes bugs elsewhere, and also is well understood as a signed quantity. --- sys/sys/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/types.h b/sys/sys/types.h index 1369a965ee05..b28481d8d6af 100644 --- a/sys/sys/types.h +++ b/sys/sys/types.h @@ -171,7 +171,7 @@ typedef _BSD_TIMER_T_ timer_t; #endif #ifndef _POSIX_SOURCE -#define NBBY 8U /* number of bits in a byte */ +#define NBBY 8 /* number of bits in a byte */ /* * Select uses bit masks of file descriptors in longs. These macros