[fix] open files in binary format for #69

This commit is contained in:
Al
2017-05-03 17:34:38 -04:00
parent 6ea2273263
commit cea3ced533
2 changed files with 3 additions and 3 deletions

View File

@@ -1110,7 +1110,7 @@ exit_file_read:
trie_t *trie_load(char *path) {
FILE *file;
file = fopen(path, "r");
file = fopen(path, "rb");
if (!file)
return NULL;