Index: third_party/yasm/patched-yasm/modules/dbgfmts/codeview/cv-symline.c |
=================================================================== |
--- third_party/yasm/patched-yasm/modules/dbgfmts/codeview/cv-symline.c (revision 71129) |
+++ third_party/yasm/patched-yasm/modules/dbgfmts/codeview/cv-symline.c (working copy) |
@@ -28,7 +28,7 @@ |
* POSSIBILITY OF SUCH DAMAGE. |
*/ |
#include <util.h> |
-/*@unused@*/ RCSID("$Id: cv-symline.c 2130 2008-10-07 05:38:11Z peter $"); |
+/*@unused@*/ RCSID("$Id: cv-symline.c 2258 2010-01-03 01:04:18Z peter $"); |
#include <libyasm.h> |
@@ -134,7 +134,7 @@ |
yasm_section *sect; /* section line numbers are for */ |
yasm_symrec *sectsym; /* symbol for beginning of sect */ |
unsigned long num_linenums; |
- STAILQ_HEAD(, cv8_lineset) linesets; |
+ STAILQ_HEAD(cv8_lineset_head, cv8_lineset) linesets; |
} cv8_lineinfo; |
/* Symbols use a bit of meta-programming to encode formats: each character |
@@ -419,7 +419,7 @@ |
yasm_linemap *linemap; |
yasm_errwarns *errwarns; |
unsigned int num_lineinfos; |
- STAILQ_HEAD(, cv8_lineinfo) cv8_lineinfos; |
+ STAILQ_HEAD(cv8_lineinfo_head, cv8_lineinfo) cv8_lineinfos; |
/*@null@*/ cv8_lineinfo *cv8_cur_li; |
/*@null@*/ cv8_lineset *cv8_cur_ls; |
} cv_line_info; |