summaryrefslogtreecommitdiffstats
path: root/usr.bin/make
diff options
context:
space:
mode:
authorjmallett <jmallett@FreeBSD.org>2002-07-15 06:57:25 +0000
committerjmallett <jmallett@FreeBSD.org>2002-07-15 06:57:25 +0000
commitfed551e32895f6259d72f25a595ff8a264f04084 (patch)
tree0ac33b2b526676eda5eb600abc6466bb509453dd /usr.bin/make
parent35fdcc10ba3e9463e61fe7fe240580e3a5b78bb6 (diff)
downloadFreeBSD-src-fed551e32895f6259d72f25a595ff8a264f04084.zip
FreeBSD-src-fed551e32895f6259d72f25a595ff8a264f04084.tar.gz
Bit-width fields should be of type 'int'.
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/lst.lib/lstInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/lst.lib/lstInt.h b/usr.bin/make/lst.lib/lstInt.h
index 86dcb2b..cc5e8f3 100644
--- a/usr.bin/make/lst.lib/lstInt.h
+++ b/usr.bin/make/lst.lib/lstInt.h
@@ -50,7 +50,7 @@
typedef struct ListNode {
struct ListNode *prevPtr; /* previous element in list */
struct ListNode *nextPtr; /* next in list */
- short useCount:8, /* Count of functions using the node.
+ int useCount:8, /* Count of functions using the node.
* node may not be deleted until count
* goes to 0 */
flags:8; /* Node status flags */
OpenPOWER on IntegriCloud