diff options
author | obrien <obrien@FreeBSD.org> | 2001-10-05 00:46:22 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-10-05 00:46:22 +0000 |
commit | 7d2463e9d1f6b0d1b2fbf51b582dda8d1731154d (patch) | |
tree | 15cbd7fbe318fc694d95723aa2d3e817479cabd3 /usr.bin/yacc | |
parent | dd61fc83a8fa795fbde75480309025c81d0c9996 (diff) | |
download | FreeBSD-src-7d2463e9d1f6b0d1b2fbf51b582dda8d1731154d.zip FreeBSD-src-7d2463e9d1f6b0d1b2fbf51b582dda8d1731154d.tar.gz |
Increase the table size by an order of magnitude.
The previous version was too small and YACC core dumped on the during the
hybrid-7 build.
Submitted by: Diane Bruce <db@db.net>
Diffstat (limited to 'usr.bin/yacc')
-rw-r--r-- | usr.bin/yacc/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/yacc/output.c b/usr.bin/yacc/output.c index 31bb4be..2390a94 100644 --- a/usr.bin/yacc/output.c +++ b/usr.bin/yacc/output.c @@ -526,7 +526,7 @@ pack_table() base = NEW2(nvectors, short); pos = NEW2(nentries, short); - maxtable = 1000; + maxtable = 10000; table = NEW2(maxtable, short); check = NEW2(maxtable, short); |