diff options
-rw-r--r-- | fuzzy.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -345,7 +345,7 @@ int fuzzy_hash_filename(const char *filename, /*@out@*/ char *result) { FILE *handle = fopen(filename, "rb"); if(NULL == handle) return -1; - status = fuzzy_hash_file(handle, result); + status = fuzzy_hash_stream(handle, result); /* We cannot do anything about an fclose failure. */ (void)fclose(handle); return status; |