From: Vern Paxson Date: Wed, 25 Aug 1993 16:40:03 +0000 (+0000) Subject: yy_nxt table should be "const" X-Git-Tag: flex-2-5-5b~418 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77e495cb1f563bf3530e2cbd8d6e5697e61b11f7;p=flex yy_nxt table should be "const" --- diff --git a/dfa.c b/dfa.c index b323336..c5d1295 100644 --- a/dfa.c +++ b/dfa.c @@ -532,7 +532,7 @@ void ntod() /* Declare it "short" because it's a real long-shot that that * won't be large enough. */ - printf( "static short int yy_nxt[][%d] =\n {\n", + printf( "static const short yy_nxt[][%d] =\n {\n", /* '}' so vi doesn't get too confused */ num_full_table_rows );