Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Unified Diff: third_party/yasm/patched-yasm/libyasm/errwarn.c

Issue 6170009: Update our yasm copy to yasm 1.1.0 (Part 1: yasm side)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/yasm/patched-yasm/libyasm/bytecode.c ('k') | third_party/yasm/patched-yasm/libyasm/file.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/yasm/patched-yasm/libyasm/errwarn.c
===================================================================
--- third_party/yasm/patched-yasm/libyasm/errwarn.c (revision 71129)
+++ third_party/yasm/patched-yasm/libyasm/errwarn.c (working copy)
@@ -25,7 +25,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "util.h"
-/*@unused@*/ RCSID("$Id: errwarn.c 2130 2008-10-07 05:38:11Z peter $");
+/*@unused@*/ RCSID("$Id: errwarn.c 2258 2010-01-03 01:04:18Z peter $");
#include <ctype.h>
#include <stdarg.h>
@@ -69,7 +69,7 @@
yasm_warn_class wclass;
/*@owned@*/ /*@null@*/ char *wstr;
} warn;
-static STAILQ_HEAD(, warn) yasm_warns;
+static STAILQ_HEAD(warn_head, warn) yasm_warns;
/* Enabled warnings. See errwarn.h for a list. */
static unsigned long warn_class_enabled;
@@ -86,7 +86,7 @@
} errwarn_data;
struct yasm_errwarns {
- /*@reldef@*/ SLIST_HEAD(, errwarn_data) errwarns;
+ /*@reldef@*/ SLIST_HEAD(errwarn_head, errwarn_data) errwarns;
/* Total error count */
unsigned int ecount;
« no previous file with comments | « third_party/yasm/patched-yasm/libyasm/bytecode.c ('k') | third_party/yasm/patched-yasm/libyasm/file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698