diff options
author | joerg <joerg@pkgsrc.org> | 2007-07-31 13:28:57 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-07-31 13:28:57 +0000 |
commit | 2bfe95b53e04ac252ad989bb3afdc62b2a6550db (patch) | |
tree | 4cccd99cf944c2d35625330cc8cb95834cd54cc7 /devel/bmake | |
parent | 1ad3d56efb9f8f1bf90b278fcf0fca5113333120 (diff) | |
download | pkgsrc-2bfe95b53e04ac252ad989bb3afdc62b2a6550db.tar.gz |
What xlC really wanted to tell me was to use int instead of short...
Diffstat (limited to 'devel/bmake')
-rw-r--r-- | devel/bmake/files/lst.lib/lstInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/bmake/files/lst.lib/lstInt.h b/devel/bmake/files/lst.lib/lstInt.h index f0397d0fce4..f194ff54c34 100644 --- a/devel/bmake/files/lst.lib/lstInt.h +++ b/devel/bmake/files/lst.lib/lstInt.h @@ -1,4 +1,4 @@ -/* $NetBSD: lstInt.h,v 1.2 2007/07/31 13:21:46 joerg Exp $ */ +/* $NetBSD: lstInt.h,v 1.3 2007/07/31 13:28:57 joerg Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -47,7 +47,7 @@ typedef struct ListNode { struct ListNode *prevPtr; /* previous element in list */ struct ListNode *nextPtr; /* next in list */ - unsigned short useCount:8, /* Count of functions using the node. + unsigned int useCount:8, /* Count of functions using the node. * node may not be deleted until count * goes to 0 */ flags:8; /* Node status flags */ |