mirror of https://mirror.osredm.com/root/redis.git
fixed typo in hahs function seed default value. It is no longer used but fixed to retain the old constant as default anyway.
This commit is contained in:
parent
06c5523a88
commit
b362c111da
|
@ -85,7 +85,7 @@ unsigned int dictIdentityHashFunction(unsigned int key)
|
|||
return key;
|
||||
}
|
||||
|
||||
static int dict_hash_function_seed = 5183;
|
||||
static int dict_hash_function_seed = 5381;
|
||||
|
||||
void dictSetHashFunctionSeed(unsigned int seed) {
|
||||
dict_hash_function_seed = seed;
|
||||
|
|
Loading…
Reference in New Issue