summaryrefslogtreecommitdiff
path: root/src/yylex.c
diff options
context:
space:
mode:
authorrlar <rlar>2016-02-28 14:17:36 +0100
committerWill Estes <westes575@gmail.com>2016-02-28 18:50:12 -0500
commit804efe8c42f692d0756b197e3cc013a09b329383 (patch)
treecdeab56ed2536529f65daf4d09015ec59b7d36af /src/yylex.c
parent80484ea2673393bf725ade8e72cda98983fa85cb (diff)
fix name clash, OPT_OUTFILE from parse.y and from options.h
these collide: OPT_OUTFILE OPT_PREFIX OPT_YYCLASS rename them TOK_... in the parser
Diffstat (limited to 'src/yylex.c')
-rw-r--r--src/yylex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yylex.c b/src/yylex.c
index 17b3e61..9fc54ff 100644
--- a/src/yylex.c
+++ b/src/yylex.c
@@ -178,8 +178,8 @@ int yylex (void)
fprintf (stderr, "%s ", yytext);
break;
- case OPT_OUTFILE:
- case OPT_PREFIX:
+ case TOK_OUTFILE:
+ case TOK_PREFIX:
case CCE_ALNUM:
case CCE_ALPHA:
case CCE_BLANK: