Skip to content

Commit

Permalink
Merge pull request #63 from microsoft/fix_62
Browse files Browse the repository at this point in the history
Missing argument for get_dictionary function.
  • Loading branch information
MarcCote authored Nov 25, 2022
2 parents 8637c21 + 32e5a25 commit 32b28e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jericho/jericho.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def _load_frotz_lib():
frotz_lib.is_supported.restype = int
frotz_lib.get_dictionary_word_count.argtypes = [c_char_p]
frotz_lib.get_dictionary_word_count.restype = int
frotz_lib.get_dictionary.argtypes = [POINTER(DictionaryWord)]
frotz_lib.get_dictionary.argtypes = [POINTER(DictionaryWord), c_int]
frotz_lib.get_dictionary.restype = None
frotz_lib.ztools_cleanup.argtypes = []
frotz_lib.ztools_cleanup.restype = None
Expand Down

0 comments on commit 32b28e1

Please sign in to comment.