| Index: third_party/yasm/patched-yasm/libyasm/inttree.c
|
| ===================================================================
|
| --- third_party/yasm/patched-yasm/libyasm/inttree.c (revision 71129)
|
| +++ third_party/yasm/patched-yasm/libyasm/inttree.c (working copy)
|
| @@ -1,5 +1,5 @@
|
| #include "util.h"
|
| -/*@unused@*/ RCSID("$Id: inttree.c 1893 2007-07-14 03:11:32Z peter $");
|
| +/*@unused@*/ RCSID("$Id: inttree.c 2262 2010-01-03 02:46:11Z peter $");
|
|
|
| #include <stdlib.h>
|
| #include <stdio.h>
|
| @@ -492,7 +492,8 @@
|
| IT_destroy(IntervalTree *it)
|
| {
|
| IntervalTreeNode *x = it->root->left;
|
| - SLIST_HEAD(, nodeent) stuffToFree = SLIST_HEAD_INITIALIZER(stuffToFree);
|
| + SLIST_HEAD(node_head, nodeent)
|
| + stuffToFree = SLIST_HEAD_INITIALIZER(stuffToFree);
|
| struct nodeent {
|
| SLIST_ENTRY(nodeent) link;
|
| struct IntervalTreeNode *node;
|
|
|