From 984ae5a535254a0771f6742a310ba19084f4bdd4 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 7 Feb 2010 22:14:04 -0500 Subject: [PATCH] Forgot to wrap this in a #if __MOJOSHADER__. --- misc/lemon.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc/lemon.c b/misc/lemon.c index 3450571b..3814e314 100644 --- a/misc/lemon.c +++ b/misc/lemon.c @@ -274,7 +274,9 @@ struct lemon { char *outname; /* Name of the current output file */ char *tokenprefix; /* A prefix added to token names in the .h file */ int nconflict; /* Number of parsing conflicts */ +#if __MOJOSHADER__ int nexpected; /* Number of expected parsing conflicts */ +#endif int tablesize; /* Size of the parse tables */ int basisflag; /* Print only basis configurations */ int has_fallback; /* True if any %fallback is seen in the grammar */