Skip to content

Commit

Permalink
Fix: increase max number of dictionary entries per record
Browse files Browse the repository at this point in the history
  • Loading branch information
bfabiszewski committed Nov 16, 2017
1 parent 33ef4fe commit e8b1b49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
#define INDX_INFLSTRINGS_MAX 500 /**< Max number of inflected strings */
#define ORDT_RECORD_MAXCNT 256 /* max entries count in old ordt */
#define CNCX_RECORD_MAXCNT 0xf /* max entries count */
#define INDX_RECORD_MAXCNT 5000 /* max index entries per record */
#define INDX_RECORD_MAXCNT 6000 /* max index entries per record */
#define INDX_TOTAL_MAXCNT ((size_t) INDX_RECORD_MAXCNT * 0xffff) /* max total index entries */
#define INDX_NAME_SIZEMAX 0xff

Expand Down

0 comments on commit e8b1b49

Please sign in to comment.