summaryrefslogtreecommitdiff
path: root/dfa.c
diff options
context:
space:
mode:
authorVern Paxson <vern@ee.lbl.gov>1993-08-25 16:40:03 +0000
committerVern Paxson <vern@ee.lbl.gov>1993-08-25 16:40:03 +0000
commit77e495cb1f563bf3530e2cbd8d6e5697e61b11f7 (patch)
tree0fbaf5099479f487be9223a20be52002f3f4ee6b /dfa.c
parent13beeb8acbe3713d6aedd09b86f0669fd25ae794 (diff)
yy_nxt table should be "const"
Diffstat (limited to 'dfa.c')
-rw-r--r--dfa.c2
1 files changed, 1 insertions, 1 deletions
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 );