Skip to content

Commit

Permalink
Increase initial size of global variables and record names tables
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJefferson committed Feb 9, 2016
1 parent 97fa819 commit bdc50cb
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 bdc50cb

Please sign in to comment.