increase lexicon size (max number of pages)

This commit is contained in:
Iris Lightshard 2022-02-12 16:23:15 -07:00
parent dff5bf47a0
commit c41b12a77e
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398

4
main.c
View file

@ -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 */