From 518b8fb965166591c1b346192e2a0589c56efcb0 Mon Sep 17 00:00:00 2001 From: Luis Ontanon Date: Tue, 30 Jan 2007 00:05:22 +0000 Subject: do not use yy_flex_realloc() svn path=/trunk/; revision=20616 --- epan/uat_load.l | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'epan/uat_load.l') diff --git a/epan/uat_load.l b/epan/uat_load.l index 93f7118cc2..2408b04d08 100644 --- a/epan/uat_load.l +++ b/epan/uat_load.l @@ -3,7 +3,6 @@ %option prefix="uat_load_" %option never-interactive %option yylineno -%option reject %{ /* @@ -91,7 +90,7 @@ newline [ \t]*[\r]?\n ws [ \t]+ comment #[^\n]*\n -%x START_OF_LINE NEXT_FIELD SEPARATOR END_OF_RECORD ERRORED UNUSED +%x START_OF_LINE NEXT_FIELD SEPARATOR END_OF_RECORD ERRORED %% {ws} ; {newline} ; @@ -194,7 +193,6 @@ comment #[^\n]*\n {newline} { ERROR(("incomplete record")); } . { ERROR(("unexpected input")); } -\042\042\042 { yy_flex_realloc(NULL,1); REJECT;} /* avoid cc warnings about unused labels and functions */ %% static int xton(char d) { -- cgit v1.2.3