From: antirez Date: Sun, 22 Jan 2012 00:40:23 +0000 (+0100) Subject: fixed typo in hahs function seed default value. It is no longer used but fixed to... X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/b362c111daa0939f86123cb6fb82fbb389cffc7b fixed typo in hahs function seed default value. It is no longer used but fixed to retain the old constant as default anyway. --- diff --git a/src/dict.c b/src/dict.c index a3291375..53e16be0 100644 --- a/src/dict.c +++ b/src/dict.c @@ -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;