Bit-width fields should be of type 'int'.

This commit is contained in:
Juli Mallett 2002-07-15 06:57:25 +00:00
parent 9739527ffb
commit 19074b91d3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=100037

View file

@ -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 */