diff options
author | Derek Stevens <nilix@nilfm.cc> | 2022-02-12 16:23:15 -0700 |
---|---|---|
committer | Derek Stevens <nilix@nilfm.cc> | 2022-02-12 16:23:15 -0700 |
commit | c41b12a77e48c5ee759b6472de97ea1f0b026342 (patch) | |
tree | 18732ce4a0372e4944d379767c48ebbd7930ce54 | |
parent | dff5bf47a0f12e1177bae5d5aea55598f2eecf55 (diff) |
increase lexicon size (max number of pages)
-rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,8 +21,8 @@ WITH REGARD TO THIS SOFTWARE. struct dirent* dir; typedef struct Lexicon { - int len, refs[512]; - char files[512][64]; + int len, refs[1024]; + char files[1024][64]; } Lexicon; /* clang-format off */ |