diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-04-29 02:30:10 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-04-29 02:30:10 +0000 |
commit | f3659316c9e8d245227c83274b4514a45ba9e228 (patch) | |
tree | 97b485fd1651fcef54b3a141715bc71b1bb4d259 /wk5/pset/speller/dictionary.c | |
parent | d79a9d68e96e959d9c774c104b4785ad46fe515f (diff) |
Sun, Apr 28, 2024, 7:30 PM -07:00
Diffstat (limited to 'wk5/pset/speller/dictionary.c')
-rw-r--r-- | wk5/pset/speller/dictionary.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wk5/pset/speller/dictionary.c b/wk5/pset/speller/dictionary.c index c777c58..e993353 100644 --- a/wk5/pset/speller/dictionary.c +++ b/wk5/pset/speller/dictionary.c @@ -66,6 +66,7 @@ bool load(const char *dictionary) // initialize the table for (int i = 0; i < N; i++) { table[i]->next = NULL; + // table[i]->word = ""; } // Open dictionary file |