From cfd5fe53ddcfcf1d5f7434cf6f43425e4e940971 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 6 Dec 2021 19:21:48 -0500 Subject: Disable formatted acronyms (again). Not quite up to snuff. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index 1de43c7..3cf4142 100644 --- a/main.c +++ b/main.c @@ -216,7 +216,7 @@ int main(int argc, char *argv[]) { NULL, }; - if (do_pattern && !dictionary_contains(dict, pattern, WT_ANY)) { + if (do_pattern && !dictionary_contains(&dicts[1], pattern, WT_ANY)) { fprintf(stderr, "Word not found in dictionary: %s\n", pattern); exit(1); } -- cgit