Skip to content

Commit

Permalink
Merge pull request #604 from ChrisJefferson/increase-table
Browse files Browse the repository at this point in the history
Increase initial size of global variables and record names tables
  • Loading branch information
stevelinton committed Feb 9, 2016
2 parents 97fa819 + bdc50cb commit d2741df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gvars.c
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@ static Int InitLibrary (
SET_LEN_PLIST( FopiesGVars, 0 );

/* make the list of global variables */
SizeGVars = 997;
SizeGVars = 14033;
TableGVars = NEW_PLIST( T_PLIST, SizeGVars );
SET_LEN_PLIST( TableGVars, SizeGVars );

Expand Down
2 changes: 1 addition & 1 deletion src/records.c
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ static Int InitLibrary (
SET_LEN_PLIST( NamesRNam, 0 );

/* make the hash list of record names */
SizeRNam = 997;
SizeRNam = 14033;
HashRNam = NEW_PLIST( T_PLIST, SizeRNam );
MakeBagPublic(HashRNam);
SET_LEN_PLIST( HashRNam, SizeRNam );
Expand Down

0 comments on commit d2741df

Please sign in to comment.