diff --git a/tools/file2hash.c b/tools/file2hash.c index 850367b..be6cdf3 100644 --- a/tools/file2hash.c +++ b/tools/file2hash.c @@ -60,7 +60,7 @@ int main(int argc, char **argv) { uint64_t hash_size = ptr ? hash_64( size ) : strlen(argv[i]); // if( ptr ) free(ptr); // speed optimization, do not free() - hash ^= hash_contents ^ hash_modt ^ hash_size; + hash ^= hash_contents /* ^ hash_modt */ ^ hash_size; } } diff --git a/tools/file2hash.exe b/tools/file2hash.exe index f831239..df50886 100644 Binary files a/tools/file2hash.exe and b/tools/file2hash.exe differ