diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-12-06 19:21:48 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-12-06 19:21:48 -0500 |
commit | cfd5fe53ddcfcf1d5f7434cf6f43425e4e940971 (patch) | |
tree | f87c4b7222cdfc8ba34b32a96b32cc8c638e967f /main.c | |
parent | bf6b57adcd220c3704469cd06f21445e0eb13888 (diff) | |
download | jdtalkc-cfd5fe53ddcfcf1d5f7434cf6f43425e4e940971.tar.gz |
Disable formatted acronyms (again). Not quite up to snuff.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |