aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-12-06 19:21:48 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-12-06 19:21:48 -0500
commitcfd5fe53ddcfcf1d5f7434cf6f43425e4e940971 (patch)
treef87c4b7222cdfc8ba34b32a96b32cc8c638e967f /main.c
parentbf6b57adcd220c3704469cd06f21445e0eb13888 (diff)
downloadjdtalkc-cfd5fe53ddcfcf1d5f7434cf6f43425e4e940971.tar.gz
Disable formatted acronyms (again). Not quite up to snuff.
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
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);
}