From 77e495cb1f563bf3530e2cbd8d6e5697e61b11f7 Mon Sep 17 00:00:00 2001 From: Vern Paxson Date: Wed, 25 Aug 1993 16:40:03 +0000 Subject: yy_nxt table should be "const" --- dfa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dfa.c') 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 ); -- cgit v1.2.3