Commit b362c111 authored by antirez's avatar antirez
Browse files

fixed typo in hahs function seed default value. It is no longer used but fixed...

fixed typo in hahs function seed default value. It is no longer used but fixed to retain the old constant as default anyway.
parent 06c5523a
...@@ -85,7 +85,7 @@ unsigned int dictIdentityHashFunction(unsigned int key) ...@@ -85,7 +85,7 @@ unsigned int dictIdentityHashFunction(unsigned int key)
return key; return key;
} }
static int dict_hash_function_seed = 5183; static int dict_hash_function_seed = 5381;
void dictSetHashFunctionSeed(unsigned int seed) { void dictSetHashFunctionSeed(unsigned int seed) {
dict_hash_function_seed = seed; dict_hash_function_seed = seed;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment