pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/bmake/files/lst.lib What xlC really wanted to te...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7b33c029364c
branches:  trunk
changeset: 531482:7b33c029364c
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Tue Jul 31 13:28:57 2007 +0000

description:
What xlC really wanted to tell me was to use int instead of short...

diffstat:

 devel/bmake/files/lst.lib/lstInt.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 8c697bfb8eba -r 7b33c029364c devel/bmake/files/lst.lib/lstInt.h
--- a/devel/bmake/files/lst.lib/lstInt.h        Tue Jul 31 13:22:01 2007 +0000
+++ b/devel/bmake/files/lst.lib/lstInt.h        Tue Jul 31 13:28:57 2007 +0000
@@ -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 */



Home | Main Index | Thread Index | Old Index