diff options
-rw-r--r-- | wk5/pset/speller/dictionary.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wk5/pset/speller/dictionary.c b/wk5/pset/speller/dictionary.c index 95d4a95..2b6a84f 100644 --- a/wk5/pset/speller/dictionary.c +++ b/wk5/pset/speller/dictionary.c @@ -47,7 +47,7 @@ bool load(const char *dictionary) FILE *source = fopen(dictionary, "r"); if (source == NULL) { - return 1; + return false; } //read each word in dictionary |